18 lines
329 B
C
18 lines
329 B
C
// Thug.h
|
|
// Guy Simmons, 12th January 1998.
|
|
|
|
#ifndef THUG_H
|
|
#define THUG_H
|
|
|
|
//---------------------------------------------------------------
|
|
|
|
extern StateFunction thug_states[];
|
|
|
|
void fn_thug_init(Thing *t_thing);
|
|
void fn_thug_normal(Thing *t_thing);
|
|
|
|
//---------------------------------------------------------------
|
|
|
|
#endif
|
|
|