Move git root from Client/ to src/ to track all source code: - Client: Game client source (moved to Client/Client/) - Server: Game server source - GameTools: Development tools - CryptoSource: Encryption utilities - database: Database scripts - Script: Game scripts - rylCoder_16.02.2008_src: Legacy coder tools - GMFont, Game: Additional resources 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
25 lines
646 B
C++
25 lines
646 B
C++
/* *********************************************************************
|
|
|
|
* Caldron Engine 공용헤더용 실제 상수 정의파일
|
|
|
|
* 파일 : Caldron.h
|
|
* 기능 : Caldron namespace의 상수들을 정의
|
|
* 작성일 : 2003.10.23
|
|
* 작성자 : yundi ( 2003.10.23)
|
|
* 수정자 :
|
|
|
|
********************************************************************** */
|
|
|
|
namespace Caldron
|
|
{
|
|
const float FLOAT_RAD = 0.0174532925f;
|
|
const float FLOAT_PI = 3.14159265358979323846f;
|
|
const float FLOAT_2PI = 6.28318530717958647692f;
|
|
|
|
extern const float MIN_EPSILON = 1.0e-4f;
|
|
extern const float MAX_EPSILON = 1.0e+10f;
|
|
const int MAX_STRINGSIZE = 40;
|
|
// const int MAX_RELOADING = 3;
|
|
|
|
|
|
} |