Files
nova-engine/engine/include/nova/platform/system_driver.h

17 lines
273 B
C++

/**
* 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