index
:
game
master
A "game" written from scratch in Rust
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
engine
/
src
/
vector.rs
blob: 92192bf310cc57fad5c787a0705c5bb8d8a2944d (
plain
)
1
2
3
4
5
6
#[derive(Debug)]
pub
struct
Vec2
<
Value
>
{
pub
x
:
Value
,
pub
y
:
Value
,
}