From 772338f8cd62594d222d48466f558b002eb1efb8 Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Sun, 23 Mar 2008 19:16:12 +0000 Subject: model pointer caching --- src/core/entity.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/core/entity.h') diff --git a/src/core/entity.h b/src/core/entity.h index 323eec7..54479be 100644 --- a/src/core/entity.h +++ b/src/core/entity.h @@ -13,6 +13,7 @@ class Entity; class EntityControlable; } +#include "core/model.h" #include "core/player.h" #include "math/mathlib.h" @@ -65,6 +66,9 @@ public: /// entity model name inline std::string const & modelname() { return entity_modelname; } + /// pointer to the model, is used client-side + inline Model * model() { return entity_model; } + /// dirty flag inline bool dirty() const { return entity_dirty; } @@ -128,6 +132,7 @@ public: float entity_radius; std::string entity_name; std::string entity_modelname; + Model *entity_model; Shape entity_shape; math::Vector3f entity_location; math::Color entity_color; -- cgit v1.2.3