2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-13 21:11:21 +00:00
metaforce/Runtime/Graphics/CSimpleShadow.hpp
2017-03-03 18:31:08 -10:00

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__