1
Fork 0
This repository has been archived on 2025-04-09. You can view files and clone it, but cannot push or open issues or pull requests.
apple-fractal/GLEssentials/Game.h

16 lines
243 B
Objective-C

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