1 /*---------------------------------------------------------------------------*
2   Project:  Horizon
3   File:     demo_Light.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_LIGHT_H_
17 #define DEMO_LIGHT_H_
18 
19 #include "demo/Utility/demo_Utility.h"
20 
21 namespace demo
22 {
23     /*!
24     :private
25 
26     @brief Light source class.
27     */
28 
29     class Light : private nn::util::NonCopyable<Light>
30     {
31     public:
32         Light(void);
33         virtual ~Light();
34 
35     public:
36         void Initialize(void);
37 
38     public:
39         f32 m_Ambient[4];
40         f32 m_Diffuse[4];
41         f32 m_Specular0[4];
42         f32 m_Specular1[4];
43         f32 m_Position[4];
44     };
45 
46 }
47 
48 #endif
49