Add object module

This commit is contained in:
Eryn Wells 2013-09-07 16:09:19 -07:00
parent 9c01ba8811
commit 8d51a521bb
3 changed files with 32 additions and 0 deletions

16
src/object.h Normal file
View file

@ -0,0 +1,16 @@
/* object.h
*
* Declaration of scene Objects.
*
* Eryn Wells <eryn@erynwells.me>
*/
#ifndef __OBJECT_H
#define __OBJECT_H
typedef struct _Object Object;
#endif