index
:
tiny-pixel-dungeon
master
Porting shattered-pixel-dungeon to C++
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
core
/
src
/
cpp
/
vec2d.h
blob: 9dc1e39aea17a2323d352dbd3ea28669682f51c5 (
plain
)
1
2
3
4
5
6
7
#pragma once template <typename T = double> struct vec2d { T x{0}; T y{0}; };