McRogueFace/src/Timer.h

17 lines
318 B
C
Raw Normal View History

2024-03-07 08:59:26 -05:00
#pragma once
#include "Common.h"
#include "Python.h"
class GameEngine; // forward declare
class Timer
{
public:
PyObject* target;
int interval;
int last_ran;
Timer(); // for map to build
Timer(Timer& other); // copy constructor
Timer(PyObject*, int, int);
~Timer();
bool test(int);
};