Files
nova-engine/engine/include/nova/platform/window_api.h
Jayden Grubb b003eca687 Rename WindowAPI::WIN32 to WindowAPI::WINDOWS
Renamed to avoid conflict with WIN32 macro when compiling on Windows.
2025-04-13 10:06:23 +10:00

12 lines
216 B
C++

/**
* Copyright (c) 2025, Jayden Grubb <contact@jaydengrubb.com>
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#pragma once
namespace Nova {
enum class WindowAPI { WAYLAND, WINDOWS, X11 };
} // namespace Nova