14 lines
265 B
C
14 lines
265 B
C
|
|
#ifndef __GRAVITY__GENERATOR_H
|
||
|
|
#define __GRAVITY__GENERATOR_H
|
||
|
|
|
||
|
|
#include "module.h"
|
||
|
|
|
||
|
|
typedef struct GravityOpaqueGenerator* GravityGenerator;
|
||
|
|
struct GravityOpaqueGenerator {
|
||
|
|
GravityModule module;
|
||
|
|
char* (*generateAssembly)(GravityGenerator self);
|
||
|
|
};
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
#endif
|