Some code

- A main()
- A Scene type
- Some functions on Scenes
This commit is contained in:
Eryn Wells 2013-09-05 21:58:58 -07:00
commit 495d3802e2
5 changed files with 148 additions and 0 deletions

14
src/charles.c Normal file
View file

@ -0,0 +1,14 @@
/* charles.c
*
* Entry point for Charles, including main().
*
* Eryn Wells <eryn@erynwells.me>
*/
int
main(int argc,
const char *argv[])
{
return 0;
}