Pioneer
LuaTimer.h
Go to the documentation of this file.
1 // Copyright © 2008-2021 Pioneer Developers. See AUTHORS.txt for details
2 // Licensed under the terms of the GPL v3. See licenses/GPL-3.txt
3 
4 #ifndef _LUATIMER_H
5 #define _LUATIMER_H
6 
7 #include "DeleteEmitter.h"
8 #include "LuaManager.h"
9 
10 class LuaTimer : public DeleteEmitter {
11 public:
12  void Tick();
13  void RemoveAll();
14 };
15 
16 #endif
Definition: DeleteEmitter.h:16
Definition: LuaTimer.h:10
void RemoveAll()
Definition: LuaTimer.cpp:11
void Tick()
Definition: LuaTimer.cpp:19