// // Game.h // iOSGLEssentials // // Created by Joshua Moerman on 08/03/14. // // #import #import @interface Game : NSObject - (void)update:(float)dt; - (void)draw; @property (nonatomic) CGSize windowSize; @end