13 lines
202 B
C
13 lines
202 B
C
#ifndef __GE_RESOURCE_H__
|
|
#define __GE_RESOURCE_H__
|
|
|
|
struct ge_resource;
|
|
typedef struct ge_resource ge_resource_t;
|
|
|
|
struct ge_resource {
|
|
int type;
|
|
void* context;
|
|
};
|
|
|
|
#endif // __GE_RESOURCE_H__
|