diff --git a/source/frontend/scrollbg.cpp b/source/frontend/scrollbg.cpp new file mode 100644 index 000000000..c8921c8fd --- /dev/null +++ b/source/frontend/scrollbg.cpp @@ -0,0 +1,102 @@ +/*========================================================================= + + paul.cpp + + Author: PKG + Created: + Project: Spongebob + Purpose: + + Copyright (c) 2000 Climax Development Ltd + +===========================================================================*/ + + +/*---------------------------------------------------------------------- + Includes + -------- */ + +#include "frontend\scrollbg.h" + +//#ifndef __UTILS_HEADER__ +//#include "utils\utils.h" +//#endif + +#ifndef __GFX_SPRBANK_H__ +#include "gfx\sprbank.h" +#endif + + +/* Std Lib + ------- */ + +/* Data + ---- */ + +#ifndef __SPR_FRONTEND_H__ +#include +#endif + + +/*---------------------------------------------------------------------- + Tyepdefs && Defines + ------------------- */ + +/*---------------------------------------------------------------------- + Structure defintions + -------------------- */ + +/*---------------------------------------------------------------------- + Function Prototypes + ------------------- */ + +/*---------------------------------------------------------------------- + Vars + ---- */ + +/*---------------------------------------------------------------------- + Function: + Purpose: + Params: + Returns: + ---------------------------------------------------------------------- */ +void CScrollyBackground::init() +{ +} + + +/*---------------------------------------------------------------------- + Function: + Purpose: + Params: + Returns: + ---------------------------------------------------------------------- */ +void CScrollyBackground::shutdown() +{ +} + + +/*---------------------------------------------------------------------- + Function: + Purpose: + Params: + Returns: + ---------------------------------------------------------------------- */ +void CScrollyBackground::render() +{ +} + + +/*---------------------------------------------------------------------- + Function: + Purpose: + Params: + Returns: + ---------------------------------------------------------------------- */ +void CScrollyBackground::think(int _frames) +{ +} + + +/*=========================================================================== + end */ \ No newline at end of file diff --git a/source/frontend/scrollbg.h b/source/frontend/scrollbg.h new file mode 100644 index 000000000..ce5aaed3f --- /dev/null +++ b/source/frontend/scrollbg.h @@ -0,0 +1,60 @@ +/*========================================================================= + + scrollbg.h + + Author: PKG + Created: + Project: Spongebob + Purpose: + + Copyright (c) 2000 Climax Development Ltd + +===========================================================================*/ + +#ifndef __FRONTEND_SCROLLBG_H__ +#define __FRONTEND_SCROLLBG_H__ + +/*---------------------------------------------------------------------- + Includes + -------- */ + +/* Std Lib + ------- */ + +/*---------------------------------------------------------------------- + Tyepdefs && Defines + ------------------- */ + +/*---------------------------------------------------------------------- + Structure defintions + -------------------- */ + +class CScrollyBackground +{ +public: + void init(); + void shutdown(); + void render(); + void think(int _frames); + +private: + class SpriteBank *m_sprites; + int m_xOff,m_yOff; + +}; + + +/*---------------------------------------------------------------------- + Globals + ------- */ + +/*---------------------------------------------------------------------- + Functions + --------- */ + +/*---------------------------------------------------------------------- */ + +#endif /* __FRONTEND_SCROLLBG_H__ */ + +/*=========================================================================== + end */