2014-04-21 20:50:05 -04:00
|
|
|
/* 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.
|
|
|
|
*
|
2021-12-26 18:47:58 +01:00
|
|
|
* 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 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
2015-05-09 15:56:27 +02:00
|
|
|
*
|
2014-04-21 20:50:05 -04:00
|
|
|
* 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.
|
2015-05-09 15:56:27 +02:00
|
|
|
*
|
2014-04-21 20:50:05 -04:00
|
|
|
* You should have received a copy of the GNU General Public License
|
2021-12-26 18:47:58 +01:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2014-04-21 20:50:05 -04:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MADS_GLOBALS_H
|
|
|
|
#define MADS_GLOBALS_H
|
|
|
|
|
|
|
|
#include "common/scummsys.h"
|
|
|
|
#include "common/array.h"
|
2014-04-23 21:01:48 -04:00
|
|
|
#include "common/serializer.h"
|
2014-05-18 16:12:40 -04:00
|
|
|
#include "mads/resources.h"
|
2014-04-21 20:50:05 -04:00
|
|
|
|
|
|
|
namespace MADS {
|
|
|
|
|
2014-05-27 00:58:25 +02:00
|
|
|
class Globals : public SynchronizedList {
|
2014-04-21 20:50:05 -04:00
|
|
|
public:
|
|
|
|
Globals() {}
|
|
|
|
|
2014-05-04 18:42:45 -04:00
|
|
|
virtual ~Globals() {}
|
|
|
|
|
2014-04-21 20:50:05 -04:00
|
|
|
/*
|
|
|
|
* Resets all the globals to empty
|
|
|
|
*/
|
|
|
|
void reset();
|
|
|
|
};
|
|
|
|
|
|
|
|
} // End of namespace MADS
|
|
|
|
|
|
|
|
#endif /* MADS_GLOBALS_H */
|