diff options
author | whitertandrek | 2018-03-18 15:56:53 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2018-06-28 23:51:32 +0200 |
commit | 45458542da30b544f9ac3ba2adc9aeffac3ab93e (patch) | |
tree | 46fbe34991d3b2420a1f082559b4f605326d75cf /engines/pink/handlers/handler.cpp | |
parent | d6f0613adfa229133734a9373a0065e19454083a (diff) | |
download | scummvm-rg350-45458542da30b544f9ac3ba2adc9aeffac3ab93e.tar.gz scummvm-rg350-45458542da30b544f9ac3ba2adc9aeffac3ab93e.tar.bz2 scummvm-rg350-45458542da30b544f9ac3ba2adc9aeffac3ab93e.zip |
PINK: Added Handler and HandlerStartPage
Diffstat (limited to 'engines/pink/handlers/handler.cpp')
-rw-r--r-- | engines/pink/handlers/handler.cpp | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/engines/pink/handlers/handler.cpp b/engines/pink/handlers/handler.cpp new file mode 100644 index 0000000000..e2d35394a7 --- /dev/null +++ b/engines/pink/handlers/handler.cpp @@ -0,0 +1,31 @@ +/* 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 "handler.h" + +namespace Pink { + +void Handler::deserialize(Archive &archive) { + +} + +} // End of namespace Pink |