Added Xcode project files for compiling Tux Paint on Mac OS X

This commit is contained in:
Martin Fuhrer 2004-11-22 22:16:18 +00:00
parent 618400bba9
commit 87cc774f6b
14 changed files with 3339 additions and 0 deletions

24
macosx/wrapperdata.h Normal file
View file

@ -0,0 +1,24 @@
/*
* wrapperdata.h
* SuperTux
*
* Created by Martin Fuhrer on Wed May 12 2004.
* Copyright (c) 2004 __MyCompanyName__. All rights reserved.
*
*/
#ifndef WRAPPER_DATA
#define WRAPPER_DATA
struct WrapperDataStruct
{
char dataPath[2048]; // path to data folder inside application bundle
char preferencesPath[2048]; // path to the user's preferences folder
int foundSDL; // was SDL.framework found?
int foundSDL_image; // was SDL_image.framework found?
int foundSDL_mixer; // was SDL_mixer.framework found?
};
typedef struct WrapperDataStruct WrapperData;
#endif