Files
test/source/gameengine/Physics/Sumo/Fuzzics/include/SM_Callback.h
Kent Mein b9a19f1ea7 Did all of the .h's in source
(adding)
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

also the Makefile.in's were from previous patch adding
the system depend stuff to configure.ac

Kent
--
mein@cs.umn.edu
2002-11-25 11:16:17 +00:00

15 lines
162 B
C++

#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