#pragma once #include "ecs.h" struct Position : ecs::Component { Position(float _x, float _y) : x(_x), y(_y) {} Position() {} float x = 0; float y = 0; };