Files
funnygame/public/materialsystem/compiledshadermgr.h
2025-12-23 15:03:44 +02:00

18 lines
386 B
C++

#ifndef SHADER_WRITER_H
#define SHADER_WRITER_H
#include "tier1/interface.h"
#include "shadercompiler/icompiler.h"
abstract_class ICompiledShaderManager
{
public:
virtual void WriteToFile( CCompiledShader *pShader, const char *szFile ) = 0;
virtual void ReadFromFile( CCompiledShader *pShader, const char *szFile ) = 0;
};
ICompiledShaderManager *CompiledShaderManager();
#endif