mirror of
https://gitea.windcorp.ru/Wind-Corporation/Progressia.git
synced 2025-04-21 12:50:46 +03:00
Fixes GH-5 - cppcheck replaced with clang-tidy - clang-tidy lint warnings fixed - Reworked build tools from scratch to make IDE setup easier - Added 1.5 IDE setup guides
14 lines
221 B
C++
14 lines
221 B
C++
#pragma once
|
|
|
|
#include "glfw_mgmt.h"
|
|
|
|
#define GLFW_INCLUDE_VULKAN
|
|
#include <GLFW/glfw3.h>
|
|
|
|
namespace progressia::desktop {
|
|
|
|
// TODO refactor into OOP
|
|
GLFWwindow *getGLFWWindowHandle();
|
|
|
|
} // namespace progressia::desktop
|