This repository has been archived on 2023-10-09. You can view files and clone it, but cannot push or open issues or pull requests.
Files
blender-archive/source/gameengine/Physics/Sumo/Fuzzics/include/SM_Callback.h
Hans Lambermont 12315f4d0e Initial revision
2002-10-12 11:37:38 +00:00

11 lines
113 B
C++

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