58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
# define red maroon
# define yellow olive
# define gray silver
#endif
@interface GameControllerTests: OFObject <OFApplicationDelegate>
{
OFArray OF_GENERIC(OFGameController) *_controllers;
OFDate *_lastControllersUpdate;
}
@end
OF_APPLICATION_DELEGATE(GameControllerTests)
@implementation GameControllerTests
|
|
|
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
# define red maroon
# define yellow olive
# define gray silver
#endif
@interface GameControllerTests: OFObject <OFApplicationDelegate>
{
OFArray OF_GENERIC(OFGameController *) *_controllers;
OFDate *_lastControllersUpdate;
}
@end
OF_APPLICATION_DELEGATE(GameControllerTests)
@implementation GameControllerTests
|