mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 21:02:50 +00:00
017d2c1f44
The addition of data an then string support made keeping track of things in struct's writeTable a nightmare.
22 lines
409 B
Objective-C
22 lines
409 B
Objective-C
#ifndef __renderer_vulkan_vkgen_vkstruct_h
|
|
#define __renderer_vulkan_vkgen_vkstruct_h
|
|
|
|
#include <Object.h>
|
|
|
|
#include "vkgen.h"
|
|
#include "vktype.h"
|
|
|
|
@class PLItem;
|
|
|
|
@interface Struct: Type
|
|
{
|
|
string outname;
|
|
}
|
|
-(void) forEachFieldCall: (varfunc) func;
|
|
-(qfot_var_t *)findField:(string) fieldName;
|
|
-(void) writeTable;
|
|
-(void) writeSymtabInit;
|
|
-(string) outname;
|
|
@end
|
|
|
|
#endif//__renderer_vulkan_vkgen_vkstruct_h
|