forked from bartvdbraak/blender
f1c4f705a1
So we should be all set now :) Kent -- mein@cs.umn.edu
11 lines
113 B
C++
11 lines
113 B
C++
#ifndef SM_CALLBACK_H
|
|
#define SM_CALLBACK_H
|
|
|
|
class SM_Callback {
|
|
public:
|
|
virtual void do_me() = 0;
|
|
};
|
|
|
|
#endif
|
|
|