Removed empty cpp source files

This commit is contained in:
OusmBlueNinja 2024-12-25 15:10:22 -06:00
parent fdac328a3f
commit 5657cf318d
4 changed files with 1 additions and 16 deletions

View File

@ -1,5 +0,0 @@
// src/CameraComponent.cpp
#include "CameraComponent.h"
// All methods are defined inline in the header for simplicity.
// You can move them to the cpp file if desired.

View File

@ -1,4 +0,0 @@
// src/MeshComponent.cpp
#include "MeshComponent.h"
// You can add functions related to MeshComponent here if needed

View File

@ -3,8 +3,8 @@
#include <string>
#include <vector>
#include <GL/glew.h>
#include <glm/glm.hpp>
#include <GL/glew.h>
struct Vertex {

View File

@ -1,6 +0,0 @@
cmake_minimum_required(VERSION 3.22)
project(glad)
add_library(glad)
target_sources(glad PRIVATE src/glad.c)
target_include_directories(glad PUBLIC include)