Seaside/SpyCustom/sdk/IVguiMatInfoVar.h

15 lines
226 B
C
Raw Normal View History

2021-06-16 18:46:33 +03:00
#ifndef IVGUIMATINFOVAR_H
#define IVGUIMATINFOVAR_H
class IVguiMatInfoVar
{
public:
virtual ~IVguiMatInfoVar() {}
virtual int GetIntValue(void) const = 0;
virtual void SetIntValue(int val) = 0;
};
#endif