#pragma once
class Renderer;
using EntityID = uint64_t;
struct Context {
Renderer* renderer;
std::vector<EntityID> selectedEntities;
};