mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-06-11 19:13:28 +00:00
16 lines
234 B
C++
16 lines
234 B
C++
#pragma once
|
|
|
|
#include "hsh/hsh.h"
|
|
|
|
namespace urde {
|
|
struct CQuadDecal;
|
|
|
|
class CDecalShaders {
|
|
hsh::binding m_dataBind;
|
|
|
|
public:
|
|
hsh::binding& BuildShaderDataBinding(CQuadDecal& decal, hsh::texture2d tex);
|
|
};
|
|
|
|
} // namespace urde
|