blender/source/gameengine/Physics/Sumo/Fuzzics/include/SM_Callback.h

12 lines
140 B
C++

#ifndef SM_CALLBACK_H
#define SM_CALLBACK_H
class SM_Callback {
public:
virtual void do_me() = 0;
virtual ~SM_Callback() {}
};
#endif