#pragma once #include "WindowManager.h" #include "MenuManager.h" #ifndef __MWERKS__ #include "WindowManager.c" #endif typedef struct VGame { EventLoopTimerRef timerRef; VWindow w; VMenu m; float Rot; /* Temporary: for testing */ } VGame; void InitGame(VGame * g); void CleanUpGame(VGame * g);