mirror of
https://github.com/0TheSpy/Seaside.git
synced 2025-01-07 10:03:29 +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 |