34 lines
1.2 KiB
Objective-C
34 lines
1.2 KiB
Objective-C
/* SDLMain.m - main entry point for our Cocoa-ized SDL app
|
|
*
|
|
* Copyright (C)
|
|
* Initial Version: Darrell Walisser <dwaliss1@purdue.edu>
|
|
* Non-NIB-Code & other changes: Max Horn <max@quendi.de>
|
|
* Change "Feel free to customize this file to suit your needs" to a
|
|
* GPL licence for the MLV Library : Adrien Boussicault (2013)
|
|
*
|
|
* This file is part of the MLV Library.
|
|
*
|
|
* This Library is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This Library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this Library. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef _SDLMain_h_
|
|
#define _SDLMain_h_
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface SDLMain : NSObject
|
|
@end
|
|
|
|
#endif /* _SDLMain_h_ */
|