17 lines
171 B
C
17 lines
171 B
C
|
/* object.h
|
||
|
*
|
||
|
* Declaration of scene Objects.
|
||
|
*
|
||
|
* Eryn Wells <eryn@erynwells.me>
|
||
|
*/
|
||
|
|
||
|
|
||
|
#ifndef __OBJECT_H
|
||
|
#define __OBJECT_H
|
||
|
|
||
|
|
||
|
typedef struct _Object Object;
|
||
|
|
||
|
|
||
|
#endif
|