16 lines
146 B
C
16 lines
146 B
C
|
/* object.c
|
||
|
*
|
||
|
* Definition of scene Objects.
|
||
|
*
|
||
|
* Eryn Wells <eryn@erynwells.me>
|
||
|
*/
|
||
|
|
||
|
|
||
|
#include "object.h"
|
||
|
|
||
|
|
||
|
struct _Object
|
||
|
{
|
||
|
int type;
|
||
|
};
|