13 lines
127 B
C++
13 lines
127 B
C++
#pragma once
|
|
|
|
struct Vector2D {
|
|
Vector2D(float x_ = 0.f, float y_ = 0.f) :
|
|
x(x_),
|
|
y(y_) {
|
|
|
|
}
|
|
float x;
|
|
float y;
|
|
};
|
|
|