souleng
Game engine providing full Python scripting support
Loading...
Searching...
No Matches
Vector2.hpp
1#pragma once
2
4struct Vector2 {
5 Vector2() : x{0}, y{0} {}
6 Vector2(float x, float y) : x{x}, y{y} {}
7 float x;
8 float y;
9};
Simple container for position data.
Definition Vector2.hpp:4