D3ltaQ's picture
Upload 2197 files
24b81cb verified
raw
history blame contribute delete
121 Bytes
class Vector2
{
void Vector2(float value_x, float value_y)
{
x = value_x;
y = value_y;
}
float x;
float y;
};