Seaside/SpyCustom/sdk/IVguiMatInfo.h
2021-06-16 18:46:33 +03:00

17 lines
286 B
C++

#ifndef IVGUIMATINFO_H
#define IVGUIMATINFO_H
#include "IVguiMatInfoVar.h"
class IVguiMatInfo
{
public:
virtual ~IVguiMatInfo() {}
virtual IVguiMatInfoVar* FindVarFactory(const char* varName, bool* found) = 0;
virtual int GetNumAnimationFrames() = 0;
};
#endif