quakeforge/libs/video/renderer/vulkan/vkgen/vkstruct.h
Bill Currie 2ca9f80d56 [vulkan] Split up vkgen
It worked as a proof of concept, but as the code itself needs to be a
bit smarter, it would be a lot smarter to break up that code to make it
easier to work on the individual parts.
2020-07-05 16:53:35 +09:00

16 lines
287 B
Objective-C

#ifndef __renderer_vulkan_vkgen_vkstruct_h
#define __renderer_vulkan_vkgen_vkstruct_h
#include <Object.h>
#include "vkgen.h"
#include "vktype.h"
@interface Struct: Type
{
}
-(void) forEachFieldCall: (varfunc) func;
-(void) writeTable;
@end
#endif//__renderer_vulkan_vkgen_vkstruct_h