mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-13 21:11:21 +00:00
18 lines
294 B
C++
18 lines
294 B
C++
#ifndef __URDE_CSIMPLESHADOW_HPP__
|
|
#define __URDE_CSIMPLESHADOW_HPP__
|
|
|
|
namespace urde
|
|
{
|
|
class CTexture;
|
|
|
|
class CSimpleShadow
|
|
{
|
|
public:
|
|
CSimpleShadow() = default;
|
|
CSimpleShadow(float, float, float, float);
|
|
void Render(const CTexture* tex);
|
|
};
|
|
}
|
|
|
|
#endif // __URDE_CSIMPLESHADOW_HPP__
|