aboutsummaryrefslogtreecommitdiff
path: root/core/src/Utils/Vector.hpp
blob: 372d484ccfbc723f393f14ab04af363f4e9b9e42 (plain)
1
2
3
4
5
6
#pragma once

struct Vec2i {
	int x = 0;
	int y = 0;
};