This commit is contained in:
Paul 2001-01-05 21:43:21 +00:00
parent e1fee5042d
commit 0ae2080bc5
3 changed files with 101 additions and 1 deletions

View File

@ -59,7 +59,8 @@ frontend_src := credits \
scrollbg \
start
game_src := game
game_src := game \
convo
gfx_src := prim \
tpage \

54
source/game/convo.cpp Normal file
View File

@ -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 */

45
source/game/convo.h Normal file
View File

@ -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 */