11 lines
156 B
C++
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
|