aboutsummaryrefslogtreecommitdiff
path: root/Client/Source/Phy2D/Common/Type.h
blob: 4c0088dbd25c5168694a2d95d4e03dd5c316421f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "fix32/fix32.hpp"
#include "libfixmath/libfixmath/fix16.hpp"

namespace Phy2D
{

	// Phy2D里的数值类型用real表示
	using real = Fix32;

	// constants
	static real kPI = real(1ll);

}