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

15 lines
162 B
C++
Raw Normal View History

2002-10-12 11:37:38 +00:00
#ifndef SM_CALLBACK_H
#define SM_CALLBACK_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
2002-10-12 11:37:38 +00:00
class SM_Callback {
public:
virtual void do_me() = 0;
};
#endif