
git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/trunk@1483 4e206d99-4929-0410-ac5d-dfc041789085
21 lines
419 B
Objective-C
21 lines
419 B
Objective-C
|
|
////////////////////////////////////////////////////////////
|
|
// Headers
|
|
////////////////////////////////////////////////////////////
|
|
#import <Cocoa/Cocoa.h>
|
|
#import <SFML/Graphics.hpp>
|
|
|
|
@interface SfmlController : NSWindowController
|
|
{
|
|
IBOutlet NSView* myView;
|
|
sf::RenderWindow *mySfmlWindow;
|
|
sf::Color myColor;
|
|
}
|
|
|
|
- (void)display:(NSTimer*)theTimer;
|
|
- (void)onInit;
|
|
|
|
- (IBAction)onApply:(id)sender;
|
|
|
|
@end
|