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: 42b5ab48ab63f4d745abdf53e284f65175429449 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef SM_CALLBACK_H
#define SM_CALLBACK_H

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

#endif