diff options
author | Denis Kasak | 2009-06-26 23:34:06 +0000 |
---|---|---|
committer | Denis Kasak | 2009-06-26 23:34:06 +0000 |
commit | c1644493b87204728f2ec9a32df28e40e9542103 (patch) | |
tree | f3aa073b806438c4f43641f9f9e01af4280f0ede | |
parent | 991102681694cf5fec6b88205ca7fd5446102b51 (diff) | |
download | scummvm-rg350-c1644493b87204728f2ec9a32df28e40e9542103.tar.gz scummvm-rg350-c1644493b87204728f2ec9a32df28e40e9542103.tar.bz2 scummvm-rg350-c1644493b87204728f2ec9a32df28e40e9542103.zip |
Added empty Game class.
svn-id: r41906
-rw-r--r-- | engines/draci/game.cpp | 26 | ||||
-rw-r--r-- | engines/draci/game.h | 36 | ||||
-rw-r--r-- | engines/draci/module.mk | 3 |
3 files changed, 64 insertions, 1 deletions
diff --git a/engines/draci/game.cpp b/engines/draci/game.cpp new file mode 100644 index 0000000000..cc008abd8f --- /dev/null +++ b/engines/draci/game.cpp @@ -0,0 +1,26 @@ +/* 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. + * + * $URL$ + * $Id$ + * + */ + +#include "draci/game.h" diff --git a/engines/draci/game.h b/engines/draci/game.h new file mode 100644 index 0000000000..d2c42fe83e --- /dev/null +++ b/engines/draci/game.h @@ -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. + * + * $URL$ + * $Id$ + * + */ + +#ifndef DRACI_GAME_H +#define DRACI_GAME_H + +namespace Draci { + +class Game { +}; + +} // End of namespace Draci + +#endif // DRACI_GAME_H diff --git a/engines/draci/module.mk b/engines/draci/module.mk index 57a860857e..2d7c33a1bf 100644 --- a/engines/draci/module.mk +++ b/engines/draci/module.mk @@ -9,7 +9,8 @@ MODULE_OBJS := \ sprite.o \ screen.o \ surface.o \ - mouse.o + mouse.o \ + game.o MODULE_DIRS += \ engines/draci |