Files
test/source/gameengine/Physics/Sumo/Fuzzics/include/SM_Callback.h
Kent Mein f1c4f705a1 Removed the config.h thing from the .h's in the source dir.
So we should be all set now :)

Kent
--
mein@cs.umn.edu
2002-12-27 13:11:01 +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