mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 07:42:18 +00:00
a6a3d4c6b5
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.
14 lines
246 B
Objective-C
14 lines
246 B
Objective-C
#ifndef __renderer_vulkan_vkgen_vkfieldarray_h
|
|
#define __renderer_vulkan_vkgen_vkfieldarray_h
|
|
|
|
#include "vkfielddef.h"
|
|
|
|
@class FieldType;
|
|
|
|
@interface ArrayField: FieldDef
|
|
{
|
|
FieldType *type;
|
|
}
|
|
@end
|
|
|
|
#endif//__renderer_vulkan_vkgen_vkfieldarray_h
|