mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-06-12 21:53:29 +00:00
19 lines
343 B
C++
19 lines
343 B
C++
#pragma once
|
|
|
|
#include <array>
|
|
#include "hsh/hsh.h"
|
|
|
|
namespace urde {
|
|
class CElementGen;
|
|
|
|
class CElementGenShaders {
|
|
hsh::binding m_shaderBind;
|
|
public:
|
|
enum class EShaderClass { Tex, IndTex, NoTex };
|
|
|
|
static EShaderClass GetShaderClass(CElementGen& gen);
|
|
hsh::binding& BuildShaderDataBinding(CElementGen& gen);
|
|
};
|
|
|
|
} // namespace urde
|