shooter/engine/Consts.h

18 lines
334 B
C
Raw Normal View History

2021-10-09 13:41:12 +03:00
//
// Created by Иван Ильин on 07.10.2021.
//
#ifndef SHOOTER_CONSTS_H
#define SHOOTER_CONSTS_H
namespace Consts {
const double PI = 3.14159265358979323846264338327950288;
const double EPS = 0.000001;
const double EPA_EPS = 0.0001;
const double RAY_CAST_MAX_DISTANCE = 10000;
2021-10-09 13:41:12 +03:00
}
#endif //SHOOTER_CONSTS_H