Changeset 6391
- Timestamp:
- Dec 21, 2009, 2:03:59 PM (15 years ago)
- Location:
- code/branches/presentation2/src/orxonox
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/presentation2/src/orxonox/OrxonoxPrereqs.h
r6107 r6391 152 152 class AmbientSound; 153 153 class BaseSound; 154 class SoundBuffer; 154 155 class SoundManager; 156 class SoundStreamer; 155 157 class WorldSound; 156 158 … … 169 171 class CameraPosition; 170 172 class ControllableEntity; 173 class EffectContainer; 171 174 class ExplosionChunk; 172 175 class MobileEntity; … … 210 213 typedef unsigned int ALuint; 211 214 typedef int ALint; 215 typedef int ALenum; 212 216 213 217 #endif /* _OrxonoxPrereqs_H__ */ -
code/branches/presentation2/src/orxonox/items/MultiStateEngine.h
r6387 r6391 38 38 namespace orxonox 39 39 { 40 // forward declaration41 class EffectContainer;42 43 40 class _OrxonoxExport MultiStateEngine : public Engine 44 41 { -
code/branches/presentation2/src/orxonox/sound/BaseSound.h
r6382 r6391 39 39 namespace orxonox 40 40 { 41 // forward declaration42 class SoundBuffer;43 44 41 /** 45 42 * The BaseSound class is the base class for all sound file loader classes. -
code/branches/presentation2/src/orxonox/sound/SoundManager.h
r6387 r6391 42 42 #include "core/SmartPtr.h" 43 43 44 // forward declaration45 typedef int ALenum;46 47 44 // tolua_begin 48 45 namespace orxonox 49 46 { 50 // forward declaration51 class SoundBuffer;52 53 47 //! Enum for the sound type. 54 48 namespace SoundType
Note: See TracChangeset
for help on using the changeset viewer.