#pragma once namespace cursor { struct cursor { bool active; float x; float y; }; extern struct cursor state[4]; void init(); void update(); }