mirror of
https://github.com/AquariaOSE/Aquaria.git
synced 2024-11-29 03:33:48 +00:00
More Xcode work.
Add a preprocessor header for OS X.
This commit is contained in:
parent
027d66f9d0
commit
785e44eb47
2 changed files with 2137 additions and 744 deletions
File diff suppressed because it is too large
Load diff
33
MacOSX/Aquaria.pch
Normal file
33
MacOSX/Aquaria.pch
Normal file
|
@ -0,0 +1,33 @@
|
|||
//
|
||||
// Aquaria.pch
|
||||
// Aquaria
|
||||
//
|
||||
// Created by C.W. Betts on 6/27/14.
|
||||
//
|
||||
//
|
||||
|
||||
#ifndef Aquaria_Aquaria_pch
|
||||
#define Aquaria_Aquaria_pch
|
||||
|
||||
#include <OpenAL/al.h>
|
||||
#include <OpenAL/alc.h>
|
||||
|
||||
#include "gl.h"
|
||||
#include "glext.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <sstream>
|
||||
#include <cmath>
|
||||
#include <float.h>
|
||||
#include "Base.h"
|
||||
#include "Texture.h"
|
||||
#include "Flags.h"
|
||||
#include "ScriptObject.h"
|
||||
#include "DSQ.h"
|
||||
#include "RenderObject.h"
|
||||
#include "Core.h"
|
||||
#endif
|
||||
|
||||
#endif
|
Loading…
Reference in a new issue