Add System, SystemDriver, Win32SystemDriver and X11SystemDriver classes

This commit is contained in:
2025-03-28 13:36:24 +10:00
parent 773a08799b
commit 8eb5a39c4c
9 changed files with 150 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
/**
* Copyright (c) 2025, Jayden Grubb <contact@jaydengrubb.com>
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#pragma once
#include <nova/api.h>
namespace Nova {
class NOVA_API SystemDriver {
public:
virtual ~SystemDriver() = default;
};
} // namespace Nova