mirror of
https://github.com/Ed94/DuctTaped_GL.git
synced 2024-11-10 04:24:52 -08:00
21 lines
401 B
C++
21 lines
401 B
C++
|
/*
|
||
|
Title : Ducktaped GL: Library Head
|
||
|
Author: Edward R. Gonzalez
|
||
|
|
||
|
Description:
|
||
|
This is the header that should be included into the application using this library.
|
||
|
|
||
|
Includes the rest of the library.
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
// DGL
|
||
|
#include "DGL_Enum.hpp"
|
||
|
#include "DGL_Types.hpp"
|
||
|
#include "DGL_Buffers.hpp"
|
||
|
#include "DGL_Shader.hpp"
|
||
|
#include "DGL_Space.hpp"
|
||
|
#include "DGL_Model.hpp"
|
||
|
#include "DGL_Entity.hpp"
|