mirror of
https://github.com/0TheSpy/Seaside.git
synced 2025-09-19 20:26:10 +08:00
15 lines
226 B
C
15 lines
226 B
C
![]() |
#ifndef IVGUIMATINFOVAR_H
|
||
|
#define IVGUIMATINFOVAR_H
|
||
|
|
||
|
|
||
|
class IVguiMatInfoVar
|
||
|
{
|
||
|
public:
|
||
|
virtual ~IVguiMatInfoVar() {}
|
||
|
|
||
|
virtual int GetIntValue(void) const = 0;
|
||
|
virtual void SetIntValue(int val) = 0;
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif
|