more C++ lol

This commit is contained in:
Ben
2019-02-20 21:08:03 +00:00
parent 4a53933482
commit c8f47a7dbe
6 changed files with 4 additions and 4 deletions

BIN
output Executable file

Binary file not shown.

View File

@@ -22,7 +22,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <glad/glad.h>
#include <glad/glad.hpp>
static void* get_proc(const char *namez);

View File

@@ -3,7 +3,7 @@
#include <vector>
// GL includes
#include <glad/glad.h>
#include <glad/glad.hpp>
// SDL includes different on windows
// the way i have it set up so i gotta

View File

@@ -5,7 +5,7 @@
#include <vector>
// GL includes
#include <glad/glad.h>
#include <glad/glad.hpp>
#if _WIN32
#include <SDL.h>

View File

@@ -1,7 +1,7 @@
#ifndef SRC_SHADER_H_
#define SRC_SHADER_H_
#include <glad/glad.h>
#include <glad/glad.hpp>
#include <string>
#include <logger.h>