blob: 2472215bb81e3cbeaf1e36e78023ae215be6e866 (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef T2DLL_T2TOOLCALLBACK_H
#define T2DLL_T2TOOLCALLBACK_H
#include "../common.h"
class AFX_CLASS_EXPORT T2ToolCallback {
public:
virtual void toolCallback_vf00(int unkParam1, T2ToolIconItem *inItem) = 0;
};
#endif
|