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: 0944ea1342f0441e8090016e1f1990fc2e1e8c49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef SM_CALLBACK_H
#define SM_CALLBACK_H

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

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

#endif