mirror of https://github.com/AxioDL/metaforce.git
20 lines
355 B
C++
20 lines
355 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, bool pmus);
|
|
};
|
|
|
|
} // namespace urde
|