1 /*---------------------------------------------------------------------------*
2   Project:  Horizon
3   File:     demo.h
4 
5   Copyright (C)2009-2012 Nintendo Co., Ltd.  All rights reserved.
6 
7   These coded instructions, statements, and computer programs contain
8   proprietary information of Nintendo of America Inc. and/or Nintendo
9   Company Ltd., and are protected by Federal copyright law.  They may
10   not be disclosed to third parties or copied or duplicated in any form,
11   in whole or in part, without the prior written consent of Nintendo.
12 
13   $Rev: 46365 $
14  *---------------------------------------------------------------------------*/
15 
16 #ifndef DEMO_H_
17 #define DEMO_H_
18 
19 #if defined(NN_PLATFORM_CTR)
20 #ifdef  __cplusplus
21     #include "demo/Utility/demo_Utility.h"
22     #include "demo/Utility/demo_MemoryManager.h"
23     #include "demo/Utility/demo_TextureConverter.h"
24 
25     #include "demo/Render/demo_RenderSystem.h"
26     #include "demo/Render/demo_RenderSystemDrawing.h"
27     #include "demo/Render/demo_RenderSystemExt.h"
28     #include "demo/Render/demo_Light.h"
29 
30     #include "demo/Body/demo_Body.h"
31     #include "demo/Body/demo_Cube.h"
32     #include "demo/Body/demo_Cylinder.h"
33     #include "demo/Body/demo_Sphere.h"
34     #include "demo/Body/demo_Particle.h"
35 
36     #include "demo/CommandCache/demo_CommandCache.h"
37 #endif // __cplusplus
38 
39 #else
40     #error no platform selected
41 #endif
42 
43 #endif
44