mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-25 04:15:49 -04:00
28 lines
613 B
C++
28 lines
613 B
C++
/**
|
|
|
|
GDevelop - Timed Event Extension
|
|
Copyright (c) 2011-2013 Florian Rival (Florian.Rival@gmail.com)
|
|
This project is released under the MIT License.
|
|
*/
|
|
|
|
#ifndef TIMEDEVENTMANAGER_H
|
|
#define TIMEDEVENTMANAGER_H
|
|
#include <map>
|
|
#include <string>
|
|
#include "GDCpp/RuntimeScene.h"
|
|
#include "GDCpp/ManualTimer.h"
|
|
|
|
class TimedEventsManager
|
|
{
|
|
public:
|
|
TimedEventsManager() {};
|
|
virtual ~TimedEventsManager() {};
|
|
|
|
std::map < std::string, ManualTimer > timedEvents;
|
|
|
|
static std::map < RuntimeScene* , TimedEventsManager > managers; //List of managers associated with scenes.
|
|
};
|
|
|
|
#endif // TIMEDEVENTMANAGER_H
|
|
|