mirror of
https://github.com/libretro/scummvm.git
synced 2025-03-03 08:40:59 +00:00
GROOVIE: Added stub for Beehive game
This commit is contained in:
parent
98acee333a
commit
e2c058bc0e
33
engines/groovie/logic/beehive.cpp
Normal file
33
engines/groovie/logic/beehive.cpp
Normal file
@ -0,0 +1,33 @@
|
||||
/* ScummVM - Graphic Adventure Engine
|
||||
*
|
||||
* ScummVM is the legal property of its developers, whose names
|
||||
* are too numerous to list here. Please refer to the COPYRIGHT
|
||||
* file distributed with this source distribution.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* as published by the Free Software Foundation; either version 2
|
||||
* of the License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*
|
||||
*/
|
||||
|
||||
#include "groovie/logic/beehive.h"
|
||||
|
||||
namespace Groovie {
|
||||
|
||||
BeehiveGame::BeehiveGame() {
|
||||
}
|
||||
|
||||
BeehiveGame::~BeehiveGame() {
|
||||
}
|
||||
|
||||
} // End of Groovie namespace
|
36
engines/groovie/logic/beehive.h
Normal file
36
engines/groovie/logic/beehive.h
Normal file
@ -0,0 +1,36 @@
|
||||
/* ScummVM - Graphic Adventure Engine
|
||||
*
|
||||
* ScummVM is the legal property of its developers, whose names
|
||||
* are too numerous to list here. Please refer to the COPYRIGHT
|
||||
* file distributed with this source distribution.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* as published by the Free Software Foundation; either version 2
|
||||
* of the License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef GROOVIE_LOGIC_BEEHIVE_H
|
||||
#define GROOVIE_LOGIC_BEEHIVE_H
|
||||
|
||||
namespace Groovie {
|
||||
|
||||
class BeehiveGame {
|
||||
public:
|
||||
BeehiveGame();
|
||||
~BeehiveGame();
|
||||
};
|
||||
|
||||
} // End of Groovie namespace
|
||||
|
||||
#endif // GROOVIE_LOGIC_BEEHIVE_H
|
@ -18,6 +18,7 @@ MODULE_OBJS := \
|
||||
|
||||
ifdef ENABLE_GROOVIE2
|
||||
MODULE_OBJS += \
|
||||
logic/beehive.o \
|
||||
logic/clangame.o \
|
||||
logic/t11hgame.o \
|
||||
logic/tlcgame.o \
|
||||
|
Loading…
x
Reference in New Issue
Block a user