quakeforge/libs/video/renderer/vulkan/vkgen/vkfieldsingle.h
Bill Currie a6a3d4c6b5 [vulkan] Make array and single parsing smarter
Array and single type overrides now allow the parsing of the items
themselves to be customized. This makes it easy to handle arrays and
pointers to single items while also using custom specifications, rather
than relying entirely on the custom override.
2021-01-04 15:30:27 +09:00

14 lines
250 B
Objective-C

#ifndef __renderer_vulkan_vkgen_vkfieldsingle_h
#define __renderer_vulkan_vkgen_vkfieldsingle_h
#include "vkfielddef.h"
@class FieldType;
@interface SingleField: FieldDef
{
FieldType *type;
}
@end
#endif//__renderer_vulkan_vkgen_vkfieldsingle_h