mirror of
https://github.com/0TheSpy/Seaside.git
synced 2025-01-11 11:33:01 +08:00
17 lines
286 B
C
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
|