move ents to engine/

master
Daniel Kolesa 2020-07-29 05:23:45 +02:00
parent 50d6e0c86b
commit 12020c5daf
5 changed files with 6 additions and 7 deletions

View File

@ -1,5 +1,4 @@
#include <shared/ents.hh>
#include "ents.hh"
#include "physics.hh"
#include "rendermodel.hh" // loadmapmodel
#include "stain.hh"

View File

@ -1,5 +1,5 @@
#ifndef SHARED_ENTS_HH
#define SHARED_ENTS_HH
#ifndef ENGINE_ENTS_HH
#define ENGINE_ENTS_HH
#include "tools.hh"
#include "geom.hh"

View File

@ -3,7 +3,8 @@
#include <shared/gl.hh>
#include <shared/geom.hh>
#include <shared/ents.hh>
#include "ents.hh"
struct vertex { vec pos; bvec4 norm; vec tc; bvec4 tangent; };

View File

@ -6,10 +6,10 @@
#include "physics.hh"
#include <shared/command.hh>
#include <shared/ents.hh>
#include <shared/igame.hh>
#include "console.hh" /* conoutf */
#include "ents.hh"
#include "main.hh" // player, timings
#include "rendergl.hh" // camera1
#include "rendermodel.hh"

View File

@ -2,7 +2,6 @@
#define ENGINE_WORLD_HH
#include <shared/geom.hh>
#include <shared/ents.hh>
/* FIXME: move these defines/enums */