mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-15 01:11:27 +00:00
2ca9f80d56
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.
13 lines
226 B
Objective-C
13 lines
226 B
Objective-C
#ifndef __renderer_vulkan_vkgen_vkenum_h
|
|
#define __renderer_vulkan_vkgen_vkenum_h
|
|
|
|
#include "vktype.h"
|
|
|
|
@interface Enum: Type
|
|
{
|
|
int prefix_length;
|
|
}
|
|
-(void) writeTable;
|
|
@end
|
|
|
|
#endif//__renderer_vulkan_vkgen_vkenum_h
|