diff options
author | Bastien Bouclet | 2016-11-01 09:45:33 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2017-07-03 08:50:10 +0200 |
commit | e2c5609e81d3a54e0d3c63427288f3c261b86ade (patch) | |
tree | 8e2cd7a82440cf74e29c8259bc646b3d0cb1ca52 /engines/mohawk/riven_stacks | |
parent | ab2d151541f5d4ae12aeeba6ec5e928109be84f5 (diff) | |
download | scummvm-rg350-e2c5609e81d3a54e0d3c63427288f3c261b86ade.tar.gz scummvm-rg350-e2c5609e81d3a54e0d3c63427288f3c261b86ade.tar.bz2 scummvm-rg350-e2c5609e81d3a54e0d3c63427288f3c261b86ade.zip |
MOHAWK: Prepare empty classes for the Riven stacks
Diffstat (limited to 'engines/mohawk/riven_stacks')
-rw-r--r-- | engines/mohawk/riven_stacks/aspit.cpp | 36 | ||||
-rw-r--r-- | engines/mohawk/riven_stacks/aspit.h | 40 | ||||
-rw-r--r-- | engines/mohawk/riven_stacks/bspit.cpp | 36 | ||||
-rw-r--r-- | engines/mohawk/riven_stacks/bspit.h | 40 | ||||
-rw-r--r-- | engines/mohawk/riven_stacks/domespit.cpp | 34 | ||||
-rw-r--r-- | engines/mohawk/riven_stacks/domespit.h | 40 | ||||
-rw-r--r-- | engines/mohawk/riven_stacks/gspit.cpp | 36 | ||||
-rw-r--r-- | engines/mohawk/riven_stacks/gspit.h | 40 | ||||
-rw-r--r-- | engines/mohawk/riven_stacks/jspit.cpp | 36 | ||||
-rw-r--r-- | engines/mohawk/riven_stacks/jspit.h | 40 | ||||
-rw-r--r-- | engines/mohawk/riven_stacks/ospit.cpp | 36 | ||||
-rw-r--r-- | engines/mohawk/riven_stacks/ospit.h | 40 | ||||
-rw-r--r-- | engines/mohawk/riven_stacks/pspit.cpp | 36 | ||||
-rw-r--r-- | engines/mohawk/riven_stacks/pspit.h | 40 | ||||
-rw-r--r-- | engines/mohawk/riven_stacks/rspit.cpp | 36 | ||||
-rw-r--r-- | engines/mohawk/riven_stacks/rspit.h | 40 | ||||
-rw-r--r-- | engines/mohawk/riven_stacks/tspit.cpp | 36 | ||||
-rw-r--r-- | engines/mohawk/riven_stacks/tspit.h | 40 |
18 files changed, 682 insertions, 0 deletions
diff --git a/engines/mohawk/riven_stacks/aspit.cpp b/engines/mohawk/riven_stacks/aspit.cpp new file mode 100644 index 0000000000..f8aa53af8a --- /dev/null +++ b/engines/mohawk/riven_stacks/aspit.cpp @@ -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. + * + */ + +#include "mohawk/riven_stacks/aspit.h" + +#include "engines/mohawk/riven.h" + +namespace Mohawk { +namespace RivenStacks { + +ASpit::ASpit(MohawkEngine_Riven *vm) : + RivenStack(vm, kStackAspit) { + +} + +} // End of namespace RivenStacks +} // End of namespace Mohawk diff --git a/engines/mohawk/riven_stacks/aspit.h b/engines/mohawk/riven_stacks/aspit.h new file mode 100644 index 0000000000..3a55714e00 --- /dev/null +++ b/engines/mohawk/riven_stacks/aspit.h @@ -0,0 +1,40 @@ +/* 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 RIVEN_STACKS_ASPIT_H +#define RIVEN_STACKS_ASPIT_H + +#include "mohawk/riven_stack.h" + +namespace Mohawk { +namespace RivenStacks { + +class ASpit : public RivenStack { +public: + ASpit(MohawkEngine_Riven *vm); + +}; + +} // End of namespace RivenStacks +} // End of namespace Mohawk + +#endif diff --git a/engines/mohawk/riven_stacks/bspit.cpp b/engines/mohawk/riven_stacks/bspit.cpp new file mode 100644 index 0000000000..791317c561 --- /dev/null +++ b/engines/mohawk/riven_stacks/bspit.cpp @@ -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. + * + */ + +#include "mohawk/riven_stacks/bspit.h" + +#include "engines/mohawk/riven.h" + +namespace Mohawk { +namespace RivenStacks { + +BSpit::BSpit(MohawkEngine_Riven *vm) : + DomeSpit(vm, kStackBspit) { + +} + +} // End of namespace RivenStacks +} // End of namespace Mohawk diff --git a/engines/mohawk/riven_stacks/bspit.h b/engines/mohawk/riven_stacks/bspit.h new file mode 100644 index 0000000000..be3c052d00 --- /dev/null +++ b/engines/mohawk/riven_stacks/bspit.h @@ -0,0 +1,40 @@ +/* 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 RIVEN_STACKS_BSPIT_H +#define RIVEN_STACKS_BSPIT_H + +#include "mohawk/riven_stacks/domespit.h" + +namespace Mohawk { +namespace RivenStacks { + +class BSpit : public DomeSpit { +public: + BSpit(MohawkEngine_Riven *vm); + +}; + +} // End of namespace RivenStacks +} // End of namespace Mohawk + +#endif diff --git a/engines/mohawk/riven_stacks/domespit.cpp b/engines/mohawk/riven_stacks/domespit.cpp new file mode 100644 index 0000000000..4674a24d2f --- /dev/null +++ b/engines/mohawk/riven_stacks/domespit.cpp @@ -0,0 +1,34 @@ +/* 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 "mohawk/riven_stacks/domespit.h" + +namespace Mohawk { +namespace RivenStacks { + +DomeSpit::DomeSpit(MohawkEngine_Riven *vm, uint16 id) : + RivenStack(vm, id) { + +} + +} // End of namespace RivenStacks +} // End of namespace Mohawk diff --git a/engines/mohawk/riven_stacks/domespit.h b/engines/mohawk/riven_stacks/domespit.h new file mode 100644 index 0000000000..776736db85 --- /dev/null +++ b/engines/mohawk/riven_stacks/domespit.h @@ -0,0 +1,40 @@ +/* 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 RIVEN_STACKS_DOMESPIT_H +#define RIVEN_STACKS_DOMESPIT_H + +#include "mohawk/riven_stack.h" + +namespace Mohawk { +namespace RivenStacks { + +class DomeSpit : public RivenStack { +public: + DomeSpit(MohawkEngine_Riven *vm, uint16 id); + +}; + +} // End of namespace RivenStacks +} // End of namespace Mohawk + +#endif diff --git a/engines/mohawk/riven_stacks/gspit.cpp b/engines/mohawk/riven_stacks/gspit.cpp new file mode 100644 index 0000000000..8617b285eb --- /dev/null +++ b/engines/mohawk/riven_stacks/gspit.cpp @@ -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. + * + */ + +#include "mohawk/riven_stacks/gspit.h" + +#include "engines/mohawk/riven.h" + +namespace Mohawk { +namespace RivenStacks { + +GSpit::GSpit(MohawkEngine_Riven *vm) : + DomeSpit(vm, kStackGspit) { + +} + +} // End of namespace RivenStacks +} // End of namespace Mohawk diff --git a/engines/mohawk/riven_stacks/gspit.h b/engines/mohawk/riven_stacks/gspit.h new file mode 100644 index 0000000000..794a95bde5 --- /dev/null +++ b/engines/mohawk/riven_stacks/gspit.h @@ -0,0 +1,40 @@ +/* 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 RIVEN_STACKS_GSPIT_H +#define RIVEN_STACKS_GSPIT_H + +#include "mohawk/riven_stacks/domespit.h" + +namespace Mohawk { +namespace RivenStacks { + +class GSpit : public DomeSpit { +public: + GSpit(MohawkEngine_Riven *vm); + +}; + +} // End of namespace RivenStacks +} // End of namespace Mohawk + +#endif diff --git a/engines/mohawk/riven_stacks/jspit.cpp b/engines/mohawk/riven_stacks/jspit.cpp new file mode 100644 index 0000000000..e19d28952c --- /dev/null +++ b/engines/mohawk/riven_stacks/jspit.cpp @@ -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. + * + */ + +#include "mohawk/riven_stacks/jspit.h" + +#include "engines/mohawk/riven.h" + +namespace Mohawk { +namespace RivenStacks { + +JSpit::JSpit(MohawkEngine_Riven *vm) : + DomeSpit(vm, kStackJspit) { + +} + +} // End of namespace RivenStacks +} // End of namespace Mohawk diff --git a/engines/mohawk/riven_stacks/jspit.h b/engines/mohawk/riven_stacks/jspit.h new file mode 100644 index 0000000000..9e82a137aa --- /dev/null +++ b/engines/mohawk/riven_stacks/jspit.h @@ -0,0 +1,40 @@ +/* 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 RIVEN_STACKS_JSPIT_H +#define RIVEN_STACKS_JSPIT_H + +#include "mohawk/riven_stacks/domespit.h" + +namespace Mohawk { +namespace RivenStacks { + +class JSpit : public DomeSpit { +public: + JSpit(MohawkEngine_Riven *vm); + +}; + +} // End of namespace RivenStacks +} // End of namespace Mohawk + +#endif diff --git a/engines/mohawk/riven_stacks/ospit.cpp b/engines/mohawk/riven_stacks/ospit.cpp new file mode 100644 index 0000000000..f36be94cb7 --- /dev/null +++ b/engines/mohawk/riven_stacks/ospit.cpp @@ -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. + * + */ + +#include "mohawk/riven_stacks/ospit.h" + +#include "engines/mohawk/riven.h" + +namespace Mohawk { +namespace RivenStacks { + +OSpit::OSpit(MohawkEngine_Riven *vm) : + RivenStack(vm, kStackOspit) { + +} + +} // End of namespace RivenStacks +} // End of namespace Mohawk diff --git a/engines/mohawk/riven_stacks/ospit.h b/engines/mohawk/riven_stacks/ospit.h new file mode 100644 index 0000000000..0792571d5d --- /dev/null +++ b/engines/mohawk/riven_stacks/ospit.h @@ -0,0 +1,40 @@ +/* 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 RIVEN_STACKS_OSPIT_H +#define RIVEN_STACKS_OSPIT_H + +#include "mohawk/riven_stack.h" + +namespace Mohawk { +namespace RivenStacks { + +class OSpit : public RivenStack { +public: + OSpit(MohawkEngine_Riven *vm); + +}; + +} // End of namespace RivenStacks +} // End of namespace Mohawk + +#endif diff --git a/engines/mohawk/riven_stacks/pspit.cpp b/engines/mohawk/riven_stacks/pspit.cpp new file mode 100644 index 0000000000..c6b1b97ec7 --- /dev/null +++ b/engines/mohawk/riven_stacks/pspit.cpp @@ -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. + * + */ + +#include "mohawk/riven_stacks/pspit.h" + +#include "engines/mohawk/riven.h" + +namespace Mohawk { +namespace RivenStacks { + +PSpit::PSpit(MohawkEngine_Riven *vm) : + DomeSpit(vm, kStackPspit) { + +} + +} // End of namespace RivenStacks +} // End of namespace Mohawk diff --git a/engines/mohawk/riven_stacks/pspit.h b/engines/mohawk/riven_stacks/pspit.h new file mode 100644 index 0000000000..797eb29000 --- /dev/null +++ b/engines/mohawk/riven_stacks/pspit.h @@ -0,0 +1,40 @@ +/* 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 RIVEN_STACKS_PSPIT_H +#define RIVEN_STACKS_PSPIT_H + +#include "mohawk/riven_stacks/domespit.h" + +namespace Mohawk { +namespace RivenStacks { + +class PSpit : public DomeSpit { +public: + PSpit(MohawkEngine_Riven *vm); + +}; + +} // End of namespace RivenStacks +} // End of namespace Mohawk + +#endif diff --git a/engines/mohawk/riven_stacks/rspit.cpp b/engines/mohawk/riven_stacks/rspit.cpp new file mode 100644 index 0000000000..c099c43417 --- /dev/null +++ b/engines/mohawk/riven_stacks/rspit.cpp @@ -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. + * + */ + +#include "mohawk/riven_stacks/rspit.h" + +#include "engines/mohawk/riven.h" + +namespace Mohawk { +namespace RivenStacks { + +RSpit::RSpit(MohawkEngine_Riven *vm) : + RivenStack(vm, kStackRspit) { + +} + +} // End of namespace RivenStacks +} // End of namespace Mohawk diff --git a/engines/mohawk/riven_stacks/rspit.h b/engines/mohawk/riven_stacks/rspit.h new file mode 100644 index 0000000000..67384cb4c5 --- /dev/null +++ b/engines/mohawk/riven_stacks/rspit.h @@ -0,0 +1,40 @@ +/* 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 RIVEN_STACKS_RSPIT_H +#define RIVEN_STACKS_RSPIT_H + +#include "mohawk/riven_stack.h" + +namespace Mohawk { +namespace RivenStacks { + +class RSpit : public RivenStack { +public: + RSpit(MohawkEngine_Riven *vm); + +}; + +} // End of namespace RivenStacks +} // End of namespace Mohawk + +#endif diff --git a/engines/mohawk/riven_stacks/tspit.cpp b/engines/mohawk/riven_stacks/tspit.cpp new file mode 100644 index 0000000000..aa4634adf7 --- /dev/null +++ b/engines/mohawk/riven_stacks/tspit.cpp @@ -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. + * + */ + +#include "mohawk/riven_stacks/tspit.h" + +#include "engines/mohawk/riven.h" + +namespace Mohawk { +namespace RivenStacks { + +TSpit::TSpit(MohawkEngine_Riven *vm) : + DomeSpit(vm, kStackTspit) { + +} + +} // End of namespace RivenStacks +} // End of namespace Mohawk diff --git a/engines/mohawk/riven_stacks/tspit.h b/engines/mohawk/riven_stacks/tspit.h new file mode 100644 index 0000000000..90c62a0272 --- /dev/null +++ b/engines/mohawk/riven_stacks/tspit.h @@ -0,0 +1,40 @@ +/* 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 RIVEN_STACKS_TSPIT_H +#define RIVEN_STACKS_TSPIT_H + +#include "mohawk/riven_stacks/domespit.h" + +namespace Mohawk { +namespace RivenStacks { + +class TSpit : public DomeSpit { +public: + TSpit(MohawkEngine_Riven *vm); + +}; + +} // End of namespace RivenStacks +} // End of namespace Mohawk + +#endif |