#pragma once struct Screen { virtual ~Screen() = default; virtual void update(float dt) = 0; virtual void draw() = 0; };