naming conventions!
This commit is contained in:
parent
ce2a615ced
commit
bfcceba502
6 changed files with 8 additions and 8 deletions
|
|
@ -2,7 +2,7 @@
|
|||
#include <GLFW/glfw3.h>
|
||||
#include <fmt/core.h>
|
||||
|
||||
#include "systems/window-system.hpp"
|
||||
#include "systems/windowsystem.hpp"
|
||||
|
||||
void error_callback(int error_code, const char *description) {
|
||||
fmt::print("[ERROR - {}] {}\n", error_code, description);
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
sources += files(
|
||||
'shader-system.cpp',
|
||||
'shader-system.hpp',
|
||||
'window-system.cpp',
|
||||
'window-system.hpp',
|
||||
'shadersystem.cpp',
|
||||
'shadersystem.hpp',
|
||||
'windowsystem.cpp',
|
||||
'windowsystem.hpp',
|
||||
)
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#include "shader-system.hpp"
|
||||
#include "shadersystem.hpp"
|
||||
|
||||
typedef struct Vertex {
|
||||
vec2 pos;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
#include "window-system.hpp"
|
||||
#include "windowsystem.hpp"
|
||||
|
||||
WindowSystem::WindowSystem(GLFWwindow *window,
|
||||
class ShaderSystem shaderSystem) {
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
#define GLFW_INCLUDE_NONE
|
||||
#include <GLFW/glfw3.h>
|
||||
#include "shader-system.hpp"
|
||||
#include "shadersystem.hpp"
|
||||
|
||||
class WindowSystem {
|
||||
GLFWwindow *window;
|
||||
Loading…
Add table
Reference in a new issue