Files
kte/Frontend.h
2026-02-17 13:44:36 -08:00

23 lines
523 B
C++

/*
* Frontend.h - top-level container that couples Input + Renderer and runs the loop
*/
#pragma once
class Editor;
class InputHandler;
class Renderer;
class Frontend {
public:
virtual ~Frontend() = default;
// Initialize the frontend (create window/terminal, etc.)
virtual bool Init(int &argc, char **argv, Editor &ed) = 0;
// Execute one iteration (poll input, dispatch, draw). Set running=false to exit.
virtual void Step(Editor &ed, bool &running) = 0;
// Shutdown/cleanup
virtual void Shutdown() = 0;
};