naming conventions!

This commit is contained in:
Benjamin Palko 2024-10-06 23:08:39 -04:00
parent ce2a615ced
commit bfcceba502
6 changed files with 8 additions and 8 deletions

View file

@ -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);

View file

@ -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',
)

View file

@ -1,4 +1,4 @@
#include "shader-system.hpp"
#include "shadersystem.hpp"
typedef struct Vertex {
vec2 pos;

View file

@ -1,4 +1,4 @@
#include "window-system.hpp"
#include "windowsystem.hpp"
WindowSystem::WindowSystem(GLFWwindow *window,
class ShaderSystem shaderSystem) {

View file

@ -1,6 +1,6 @@
#define GLFW_INCLUDE_NONE
#include <GLFW/glfw3.h>
#include "shader-system.hpp"
#include "shadersystem.hpp"
class WindowSystem {
GLFWwindow *window;