isle/LEGO1/mxvariabletable.h

15 lines
340 B
C
Raw Normal View History

2023-04-27 22:19:39 -04:00
#ifndef MXVARIABLETABLE_H
#define MXVARIABLETABLE_H
class MxVariable;
2023-04-27 22:19:39 -04:00
class MxVariableTable
{
public:
__declspec(dllexport) const char * GetVariable(const char *key);
__declspec(dllexport) void SetVariable(MxVariable *var);
2023-04-27 22:19:39 -04:00
__declspec(dllexport) void SetVariable(const char *key, const char *value);
};
#endif // MXVARIABLETABLE_H