16 lines
248 B
C++
16 lines
248 B
C++
//
|
|
// Created by sebastian on 14.02.26.
|
|
//
|
|
|
|
#ifndef DICEWARS_SIEDLER_ENGINETIME_H
|
|
#define DICEWARS_SIEDLER_ENGINETIME_H
|
|
|
|
|
|
class EngineTime {
|
|
public:
|
|
static float deltaTime;
|
|
static float totalTime;
|
|
};
|
|
|
|
|
|
#endif //DICEWARS_SIEDLER_ENGINETIME_H
|