Gray C++ Libraries  0.0.2
A set of C++ libraries for MSVC, GNU on Windows, WinCE, Linux
cDXLight.h
Go to the documentation of this file.
1 //
4 //
5 
6 #ifndef _INC_cDXLight_H
7 #define _INC_cDXLight_H
8 #ifndef NO_PRAGMA_ONCE
9 #pragma once
10 #endif
11 
12 #include "cDXBase.h"
13 
14 #ifdef USE_DX9
15 namespace Gray3D
16 {
17  class cDXLight : public D3DLIGHT9
18  {
21  public:
22  void InitLight( D3DLIGHTTYPE ltType, FLOAT x=0, FLOAT y=0, FLOAT z=0 ) noexcept;
23  void SetColor1() noexcept;
24  };
25 };
26 #endif
27 #endif // _INC_cDXLight_H
Definition: Gray3D.cpp:12