Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SM_Callback.h « include « Fuzzics « Sumo « Physics « gameengine « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a43ddbec483f7c0411f312d0f4c30341f2326d05 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef SM_CALLBACK_H
#define SM_CALLBACK_H

class SM_Callback {
public:
	virtual void do_me() = 0;
}; 

#endif