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

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