diff --git a/source/frontend/nicklogo.cpp b/source/frontend/nicklogo.cpp new file mode 100644 index 000000000..fcb0419e4 --- /dev/null +++ b/source/frontend/nicklogo.cpp @@ -0,0 +1,85 @@ +/*========================================================================= + + nicklogo.cpp + + Author: PKG + Created: + Project: Spongebob + Purpose: + + Copyright (c) 2000 Climax Development Ltd + +===========================================================================*/ + + +/*---------------------------------------------------------------------- + Includes + -------- */ + +#include "frontend\nicklogo.h" + +#ifndef __GFX_FADER_H__ +#include "gfx\fader.h" +#endif + +#ifndef __PAD_PADS_H__ +#include "pad\pads.h" +#endif + + +/* Std Lib + ------- */ + +/* Data + ---- */ + +/*---------------------------------------------------------------------- + Tyepdefs && Defines + ------------------- */ + +/*---------------------------------------------------------------------- + Structure defintions + -------------------- */ + +/*---------------------------------------------------------------------- + Function Prototypes + ------------------- */ + +/*---------------------------------------------------------------------- + Vars + ---- */ + +/*---------------------------------------------------------------------- + Function: + Purpose: + Params: + Returns: + ---------------------------------------------------------------------- */ +void CFrontEndNickLogo::select() +{ +} + +/*---------------------------------------------------------------------- + Function: + Purpose: + Params: + Returns: + ---------------------------------------------------------------------- */ +int CFrontEndNickLogo::isReadyToExit() +{ + return false; +} + +/*---------------------------------------------------------------------- + Function: + Purpose: + Params: + Returns: + ---------------------------------------------------------------------- */ +CFrontEndScene::FrontEndMode CFrontEndNickLogo::getNextMode() +{ + return CFrontEndScene::MODE__FMV_THQ; +} + +/*=========================================================================== + end */ \ No newline at end of file diff --git a/source/frontend/nicklogo.h b/source/frontend/nicklogo.h new file mode 100644 index 000000000..80c7f4bc4 --- /dev/null +++ b/source/frontend/nicklogo.h @@ -0,0 +1,60 @@ +/*========================================================================= + + nicklogo.h + + Author: PKG + Created: + Project: Spongebob + Purpose: + + Copyright (c) 2001 Climax Development Ltd + +===========================================================================*/ + +#ifndef __FRONTEND_NICKLOGO_H__ +#define __FRONTEND_NICKLOGO_H__ + +/*---------------------------------------------------------------------- + Includes + -------- */ + +#ifndef __FRONTEND_FRONTEND_H__ +#include "frontend\frontend.h" +#endif + + +/* Std Lib + ------- */ + +/*---------------------------------------------------------------------- + Tyepdefs && Defines + ------------------- */ + +/*---------------------------------------------------------------------- + Structure defintions + -------------------- */ + +class CFrontEndNickLogo : public CFrontEndMode +{ +public: + void select(); + + int isReadyToExit(); + CFrontEndScene::FrontEndMode getNextMode(); +}; + + +/*---------------------------------------------------------------------- + Globals + ------- */ + +/*---------------------------------------------------------------------- + Functions + --------- */ + +/*---------------------------------------------------------------------- */ + +#endif /* __FRONTEND_NICKLOGO_H__ */ + +/*=========================================================================== + end */