mirror of
https://github.com/Kbz-8/42_vox.git
synced 2026-01-10 22:23:35 +00:00
16 lines
384 B
C
16 lines
384 B
C
#ifndef __SCOP_GRAPHICS__
|
|
#define __SCOP_GRAPHICS__
|
|
|
|
#include <Graphics/Actor.h>
|
|
#include <Graphics/Material.h>
|
|
#include <Graphics/Mesh.h>
|
|
#include <Graphics/Model.h>
|
|
#include <Graphics/Scene.h>
|
|
#include <Graphics/MeshFactory.h>
|
|
#include <Graphics/Cameras/Base.h>
|
|
#include <Graphics/Cameras/FirstPerson3D.h>
|
|
#include <Graphics/Loaders/OBJ.h>
|
|
#include <Graphics/Loaders/BMP.h>
|
|
|
|
#endif
|