#pragma once namespace Gedeng { class Application { Application() = default; // Virtual since this class will be inherited by user-created applications virtual ~Application() = default; void run(); }; } // namespace Gedeng