Files
Tower-Defense2/include/td/Constants.h
2024-10-25 17:12:13 +02:00

11 lines
156 B
C++

#pragma once
#include <cstdint>
namespace td {
constexpr int TPS = 20;
constexpr float STEP_PERIOD = 1.0f / static_cast<float>(TPS);
} // namespace td