DayZ 1.24
Loading...
Searching...
No Matches
Vector2.c
Go to the documentation of this file.
1class Vector2
2{
3 void Vector2(float value_x, float value_y)
4 {
5 x = value_x;
6 y = value_y;
7 }
8
9 float x;
10 float y;
11};
float x
Definition Vector2.c:9
float y
Definition Vector2.c:10
void Vector2(float value_x, float value_y)
Definition Vector2.c:3