mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-19 07:20:50 +00:00
96df447c45
The pipeline parser still isn't hooked up yet as something isn't quite right, but it seems all the parsing works.
19 lines
363 B
Objective-C
19 lines
363 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
|
|
{
|
|
}
|
|
-(void) forEachFieldCall: (varfunc) func;
|
|
-(void) writeTable: (PLItem *) parse;
|
|
-(void) writeSymtabInit:(PLItem *) parse;
|
|
@end
|
|
|
|
#endif//__renderer_vulkan_vkgen_vkstruct_h
|