00001 // ///////////////////////////////////////////////////////////////////////////// 00002 // 00003 // Name: components.h 00004 // Author: Michael Bartsch (ZCCdark203) 00005 // 00006 // Desc : Header file with all components. 00007 // 00008 // License: Copyright (C) 2009 Michael Bartsch and Contributors 00009 // 00010 // This program is free software: you can redistribute it 00011 // and/or modify it under the terms of the zlib/libpng License. 00012 // See main.cpp for conditions of distribution and use. 00013 // 00014 // ///////////////////////////////////////////////////////////////////////////// 00015 00016 #ifndef __COMPONENTS_H__ 00017 #define __COMPONENTS_H__ 00018 00019 // Include files 00020 // Scene 00021 #include "scene/SceneComponent.h" 00022 #include "scene/AnimatedMeshComponent.h" 00023 #include "scene/BillboardComponent.h" 00024 #include "scene/CameraComponent.h" 00025 #include "scene/ImageComponent.h" 00026 #include "scene/LightComponent.h" 00027 #include "scene/MeshComponent.h" 00028 #include "scene/OctTreeComponent.h" 00029 #include "scene/ParticleSysComponent.h" 00030 #include "scene/SkyBoxComponent.h" 00031 #include "scene/SkyDomeComponent.h" 00032 #include "scene/TerrainComponent.h" 00033 #include "scene/TextBillboardComponent.h" 00034 00035 // Sound 00036 #include "sound/SoundListenerComponent.h" 00037 #include "sound/SoundSourceComponent.h" 00038 00039 00040 // AngelScript binding 00042 extern void bindComponents(asIScriptEngine *engine); 00043 00044 #endif 00045