From 82293065b52f5a4e5c4ccde5eade4ebae18014ca Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Sat, 3 May 2008 21:04:02 +0000 Subject: liibmodel --- src/core/gameinterface.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/core/gameinterface.cc') diff --git a/src/core/gameinterface.cc b/src/core/gameinterface.cc index a739eb2..5789592 100644 --- a/src/core/gameinterface.cc +++ b/src/core/gameinterface.cc @@ -7,20 +7,20 @@ #include #include -#include "sys/sys.h" #include "core/application.h" #include "core/cvar.h" #include "core/func.h" #include "core/gameinterface.h" -#include "core/model.h" #include "core/player.h" +#include "model/model.h" +#include "sys/sys.h" namespace core { void func_list_model(std::string const &args) { - Model::list(); + model::Model::list(); } Player GameInterface::game_localplayer; @@ -90,7 +90,7 @@ void GameInterface::clear() } // remove all models - Model::clear(); + model::Model::clear(); } -- cgit v1.2.3