mirror of https://github.com/AxioDL/metaforce.git
15 lines
239 B
C++
15 lines
239 B
C++
|
#ifndef __URDE_CSIMPLESHADOW_HPP__
|
||
|
#define __URDE_CSIMPLESHADOW_HPP__
|
||
|
|
||
|
namespace urde
|
||
|
{
|
||
|
class CSimpleShadow
|
||
|
{
|
||
|
public:
|
||
|
CSimpleShadow() = default;
|
||
|
CSimpleShadow(float, float, float, float);
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif // __URDE_CSIMPLESHADOW_HPP__
|