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

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