Add WindowDriver::beep function

This commit is contained in:
2025-04-08 18:55:27 +10:00
parent 9ab1b306b3
commit 6055ae1ebc
3 changed files with 7 additions and 1 deletions

View File

@@ -20,6 +20,7 @@ namespace Nova {
virtual ~WindowDriver() = default;
virtual void poll_events() = 0;
virtual void beep() = 0;
virtual WindowID create_window(std::string_view title = "Nova", u32 width = 800, u32 height = 600) = 0;
virtual void destroy_window(WindowID window) = 0;