diff --git a/makefile.gaz b/makefile.gaz index 0a9f37e78..9353a2aaf 100644 --- a/makefile.gaz +++ b/makefile.gaz @@ -59,7 +59,8 @@ frontend_src := credits \ scrollbg \ start -game_src := game +game_src := game \ + convo gfx_src := prim \ tpage \ diff --git a/source/game/convo.cpp b/source/game/convo.cpp new file mode 100644 index 000000000..968befce1 --- /dev/null +++ b/source/game/convo.cpp @@ -0,0 +1,54 @@ +/*========================================================================= + + convo.cpp + + Author: PKG + Created: + Project: Spongebob + Purpose: + + Copyright (c) 2000 Climax Development Ltd + +===========================================================================*/ + + +/*---------------------------------------------------------------------- + Includes + -------- */ + +#include "game\convo.h" + +/* Std Lib + ------- */ + +/* Data + ---- */ + +/*---------------------------------------------------------------------- + Tyepdefs && Defines + ------------------- */ + +/*---------------------------------------------------------------------- + Structure defintions + -------------------- */ + +/*---------------------------------------------------------------------- + Function Prototypes + ------------------- */ + +/*---------------------------------------------------------------------- + Vars + ---- */ + +/*---------------------------------------------------------------------- + Function: + Purpose: + Params: + Returns: + ---------------------------------------------------------------------- */ +void somethingToStopTheLinkerComplaining() +{ +} + +/*=========================================================================== + end */ diff --git a/source/game/convo.h b/source/game/convo.h new file mode 100644 index 000000000..3b288f9b2 --- /dev/null +++ b/source/game/convo.h @@ -0,0 +1,45 @@ +/*========================================================================= + + convo.h + + Author: PKG + Created: + Project: Spongebob + Purpose: + + Copyright (c) 2000 Climax Development Ltd + +===========================================================================*/ + +#ifndef __GAME_CONVO_H__ +#define __GAME_CONVO_H__ + +/*---------------------------------------------------------------------- + Includes + -------- */ + +/* Std Lib + ------- */ + +/*---------------------------------------------------------------------- + Tyepdefs && Defines + ------------------- */ + +/*---------------------------------------------------------------------- + Structure defintions + -------------------- */ + +/*---------------------------------------------------------------------- + Globals + ------- */ + +/*---------------------------------------------------------------------- + Functions + --------- */ + +/*---------------------------------------------------------------------- */ + +#endif /* __GAME_CONVO_H__ */ + +/*=========================================================================== + end */