2010-01-03 13:39:39 +00:00
|
|
|
// Cyphesis Online RPG Server and AI Engine
|
|
|
|
|
// Copyright (C) 2009 Alistair Riddoch
|
|
|
|
|
//
|
|
|
|
|
// This program is free software; you can redistribute it and/or modify
|
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
|
// the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
//
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
//
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
|
// along with this program; if not, write to the Free Software Foundation,
|
|
|
|
|
// Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
|
|
|
|
|
|
|
2011-02-15 09:30:46 +00:00
|
|
|
#ifdef NDEBUG
|
|
|
|
|
#undef NDEBUG
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef DEBUG
|
|
|
|
|
#define DEBUG
|
|
|
|
|
#endif
|
|
|
|
|
|
2020-01-20 23:17:55 +01:00
|
|
|
#include "../TestBase.h"
|
2012-12-28 23:06:10 +00:00
|
|
|
|
2020-04-13 11:17:52 +02:00
|
|
|
#include "rules/simulation/WorldRouter.h"
|
2010-01-03 13:39:39 +00:00
|
|
|
|
2010-03-22 16:59:58 +00:00
|
|
|
#include "server/EntityBuilder.h"
|
2010-01-03 13:39:39 +00:00
|
|
|
|
2018-10-31 21:38:35 +01:00
|
|
|
#include "rules/Domain.h"
|
2018-11-03 16:43:33 +01:00
|
|
|
#include "rules/simulation/World.h"
|
2010-03-22 16:59:58 +00:00
|
|
|
|
|
|
|
|
#include "common/const.h"
|
2010-01-03 13:39:39 +00:00
|
|
|
#include "common/globals.h"
|
|
|
|
|
#include "common/id.h"
|
2010-03-22 16:59:58 +00:00
|
|
|
#include "common/Inheritance.h"
|
|
|
|
|
#include "common/log.h"
|
|
|
|
|
#include "common/Monitors.h"
|
2018-10-30 20:12:45 +01:00
|
|
|
#include "common/operations/Tick.h"
|
2010-03-22 16:59:58 +00:00
|
|
|
#include "common/Variable.h"
|
2010-01-03 13:39:39 +00:00
|
|
|
|
|
|
|
|
#include <Atlas/Objects/Anonymous.h>
|
|
|
|
|
|
2010-03-22 16:59:58 +00:00
|
|
|
#include <cstdio>
|
|
|
|
|
#include <cstdlib>
|
|
|
|
|
|
2010-01-03 13:39:39 +00:00
|
|
|
#include <cassert>
|
|
|
|
|
|
2010-03-22 16:59:58 +00:00
|
|
|
using Atlas::Message::MapType;
|
2010-01-03 13:39:39 +00:00
|
|
|
using Atlas::Objects::Entity::Anonymous;
|
2010-03-22 16:59:58 +00:00
|
|
|
using Atlas::Objects::Entity::RootEntity;
|
2010-01-03 21:38:49 +00:00
|
|
|
using Atlas::Objects::Operation::Tick;
|
|
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
static bool stub_deny_newid = false;
|
2019-09-10 22:42:28 +02:00
|
|
|
Atlas::Objects::Factories factories;
|
2012-12-28 23:06:10 +00:00
|
|
|
|
|
|
|
|
class WorldRoutertest : public Cyphesis::TestBase
|
2010-01-03 21:38:49 +00:00
|
|
|
{
|
2012-12-28 23:06:10 +00:00
|
|
|
WorldRouter * test_world;
|
2018-08-04 01:12:45 +02:00
|
|
|
EntityBuilder* m_eb;
|
2010-01-03 21:38:49 +00:00
|
|
|
public:
|
2012-12-28 23:06:10 +00:00
|
|
|
WorldRoutertest();
|
|
|
|
|
|
|
|
|
|
void setup();
|
|
|
|
|
void teardown();
|
|
|
|
|
|
|
|
|
|
void test_constructor();
|
|
|
|
|
void test_addNewEntity_unknown();
|
|
|
|
|
void test_addNewEntity_thing();
|
|
|
|
|
void test_addNewEntity_idfail();
|
|
|
|
|
void test_addEntity();
|
|
|
|
|
void test_addEntity_tick();
|
|
|
|
|
void test_addEntity_tick_get();
|
|
|
|
|
void test_delEntity();
|
|
|
|
|
void test_delEntity_world();
|
2018-04-25 20:09:14 +02:00
|
|
|
|
|
|
|
|
Inheritance* m_inheritance;
|
2018-08-05 14:31:04 +02:00
|
|
|
Ref<LocatedEntity> m_rootEntity;
|
2010-01-03 21:38:49 +00:00
|
|
|
};
|
2010-01-03 13:39:39 +00:00
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
WorldRoutertest::WorldRoutertest()
|
2010-01-03 13:39:39 +00:00
|
|
|
{
|
2018-08-05 14:31:04 +02:00
|
|
|
ADD_TEST(WorldRoutertest::test_addNewEntity_thing);
|
2012-12-28 23:06:10 +00:00
|
|
|
ADD_TEST(WorldRoutertest::test_constructor);
|
|
|
|
|
ADD_TEST(WorldRoutertest::test_addNewEntity_unknown);
|
|
|
|
|
ADD_TEST(WorldRoutertest::test_addNewEntity_idfail);
|
|
|
|
|
ADD_TEST(WorldRoutertest::test_addEntity);
|
|
|
|
|
ADD_TEST(WorldRoutertest::test_addEntity_tick);
|
|
|
|
|
ADD_TEST(WorldRoutertest::test_addEntity_tick_get);
|
|
|
|
|
ADD_TEST(WorldRoutertest::test_delEntity);
|
|
|
|
|
ADD_TEST(WorldRoutertest::test_delEntity_world);
|
|
|
|
|
}
|
2010-01-03 13:39:39 +00:00
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
void WorldRoutertest::setup()
|
|
|
|
|
{
|
2022-07-04 15:37:51 +02:00
|
|
|
m_rootEntity = new Entity(0);
|
2019-09-10 22:42:28 +02:00
|
|
|
m_inheritance = new Inheritance(factories);
|
2018-08-04 01:12:45 +02:00
|
|
|
m_eb = new EntityBuilder();
|
2020-08-01 00:10:01 +02:00
|
|
|
test_world = new WorldRouter(m_rootEntity, *m_eb, {});
|
2012-12-28 23:06:10 +00:00
|
|
|
}
|
2010-01-03 21:38:49 +00:00
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
void WorldRoutertest::teardown()
|
|
|
|
|
{
|
2018-08-05 14:31:04 +02:00
|
|
|
m_rootEntity = nullptr;
|
2018-08-04 01:12:45 +02:00
|
|
|
delete m_eb;
|
2012-12-28 23:06:10 +00:00
|
|
|
delete test_world;
|
2018-04-25 20:09:14 +02:00
|
|
|
delete m_inheritance;
|
2012-12-28 23:06:10 +00:00
|
|
|
}
|
2010-01-03 13:39:39 +00:00
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
void WorldRoutertest::test_constructor()
|
|
|
|
|
{
|
|
|
|
|
}
|
2010-01-03 13:39:39 +00:00
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
void WorldRoutertest::test_addNewEntity_unknown()
|
|
|
|
|
{
|
2010-01-03 21:38:49 +00:00
|
|
|
|
2018-08-05 14:31:04 +02:00
|
|
|
auto ent1 = test_world->addNewEntity("__no_such_type__",
|
2013-01-17 10:17:07 +00:00
|
|
|
Anonymous());
|
2018-08-05 14:31:04 +02:00
|
|
|
assert(ent1.get() == 0);
|
2012-12-28 23:06:10 +00:00
|
|
|
}
|
2010-01-03 21:38:49 +00:00
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
void WorldRoutertest::test_addNewEntity_thing()
|
|
|
|
|
{
|
2020-06-22 23:42:48 +02:00
|
|
|
Anonymous ent;
|
|
|
|
|
ent->setLoc("0");
|
|
|
|
|
auto ent1 = test_world->addNewEntity("thing", ent);
|
2018-08-05 14:31:04 +02:00
|
|
|
assert(ent1.get() != 0);
|
2012-12-28 23:06:10 +00:00
|
|
|
}
|
2010-01-03 21:38:49 +00:00
|
|
|
|
|
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
void WorldRoutertest::test_addNewEntity_idfail()
|
|
|
|
|
{
|
|
|
|
|
stub_deny_newid = true;
|
2010-01-03 21:38:49 +00:00
|
|
|
|
2020-06-22 23:42:48 +02:00
|
|
|
Anonymous ent;
|
|
|
|
|
ent->setLoc("0");
|
|
|
|
|
auto ent1 = test_world->addNewEntity("thing", ent);
|
2018-08-05 14:31:04 +02:00
|
|
|
assert(ent1.get() == 0);
|
2010-01-03 21:38:49 +00:00
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
stub_deny_newid = false;
|
|
|
|
|
}
|
2010-03-22 16:59:58 +00:00
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
void WorldRoutertest::test_addEntity()
|
|
|
|
|
{
|
2022-07-04 15:37:51 +02:00
|
|
|
auto id = newId();
|
2012-12-28 23:06:10 +00:00
|
|
|
|
2022-07-04 15:37:51 +02:00
|
|
|
auto ent2 = new Entity(id);
|
2012-12-28 23:06:10 +00:00
|
|
|
assert(ent2 != 0);
|
2021-06-18 22:44:30 +02:00
|
|
|
ent2->m_parent = m_rootEntity.get();
|
2020-04-13 15:23:01 +02:00
|
|
|
test_world->addEntity(ent2, m_rootEntity);
|
2012-12-28 23:06:10 +00:00
|
|
|
}
|
2010-03-22 16:59:58 +00:00
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
void WorldRoutertest::test_addEntity_tick()
|
|
|
|
|
{
|
2022-07-04 15:37:51 +02:00
|
|
|
auto id = newId();
|
2012-12-28 23:06:10 +00:00
|
|
|
|
2022-07-04 15:37:51 +02:00
|
|
|
auto ent2 = new Entity(id);
|
2012-12-28 23:06:10 +00:00
|
|
|
assert(ent2 != 0);
|
2021-06-18 22:44:30 +02:00
|
|
|
ent2->m_parent = m_rootEntity.get();
|
2020-04-13 15:23:01 +02:00
|
|
|
test_world->addEntity(ent2, m_rootEntity);
|
2012-12-28 23:06:10 +00:00
|
|
|
|
|
|
|
|
Tick tick;
|
|
|
|
|
tick->setFutureSeconds(0);
|
|
|
|
|
tick->setTo(ent2->getId());
|
|
|
|
|
test_world->message(tick, *ent2);
|
|
|
|
|
}
|
2010-03-22 16:59:58 +00:00
|
|
|
|
2010-01-03 21:38:49 +00:00
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
void WorldRoutertest::test_addEntity_tick_get()
|
|
|
|
|
{
|
2022-07-04 15:37:51 +02:00
|
|
|
auto id = newId();
|
2010-01-03 21:38:49 +00:00
|
|
|
|
2022-07-04 15:37:51 +02:00
|
|
|
auto ent2 = new Entity(id);
|
2012-12-28 23:06:10 +00:00
|
|
|
assert(ent2 != 0);
|
2021-06-18 22:44:30 +02:00
|
|
|
ent2->m_parent = m_rootEntity.get();
|
2020-04-13 15:23:01 +02:00
|
|
|
test_world->addEntity(ent2, m_rootEntity);
|
2010-01-03 21:38:49 +00:00
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
Tick tick;
|
|
|
|
|
tick->setFutureSeconds(0);
|
|
|
|
|
tick->setTo(ent2->getId());
|
|
|
|
|
test_world->message(tick, *ent2);
|
2010-03-22 16:59:58 +00:00
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
}
|
2010-03-22 16:59:58 +00:00
|
|
|
|
|
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
void WorldRoutertest::test_delEntity()
|
|
|
|
|
{
|
2022-07-04 15:37:51 +02:00
|
|
|
auto id = newId();
|
2010-01-03 21:38:49 +00:00
|
|
|
|
2022-07-04 15:37:51 +02:00
|
|
|
auto ent2 = new Entity(id);
|
2012-12-28 23:06:10 +00:00
|
|
|
assert(ent2 != 0);
|
2021-06-18 22:44:30 +02:00
|
|
|
ent2->m_parent = m_rootEntity.get();
|
2020-04-13 15:23:01 +02:00
|
|
|
test_world->addEntity(ent2, m_rootEntity);
|
2010-01-03 21:38:49 +00:00
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
test_world->delEntity(ent2);
|
2018-08-05 20:47:09 +02:00
|
|
|
test_world->delEntity(m_rootEntity.get());
|
2012-12-28 23:06:10 +00:00
|
|
|
}
|
2010-01-03 21:38:49 +00:00
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
void WorldRoutertest::test_delEntity_world()
|
|
|
|
|
{
|
2018-08-05 20:47:09 +02:00
|
|
|
test_world->delEntity(m_rootEntity.get());
|
2012-12-28 23:06:10 +00:00
|
|
|
}
|
2010-01-03 13:39:39 +00:00
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
int main()
|
|
|
|
|
{
|
|
|
|
|
WorldRoutertest t;
|
2012-12-28 11:31:43 +00:00
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
return t.run();
|
2010-01-03 13:39:39 +00:00
|
|
|
}
|
2010-03-22 16:59:58 +00:00
|
|
|
|
|
|
|
|
// Stubs
|
|
|
|
|
|
|
|
|
|
int timeoffset = 0;
|
|
|
|
|
|
|
|
|
|
namespace consts {
|
|
|
|
|
const char * rootWorldId = "0";
|
|
|
|
|
const long rootWorldIntId = 0L;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
namespace Atlas { namespace Objects { namespace Operation {
|
|
|
|
|
int TICK_NO = -1;
|
|
|
|
|
}}}
|
|
|
|
|
|
2020-01-20 23:17:55 +01:00
|
|
|
#include "../stubs/rules/simulation/stubWorld.h"
|
|
|
|
|
#include "../stubs/rules/simulation/stubThing.h"
|
|
|
|
|
#include "../stubs/rules/simulation/stubEntity.h"
|
|
|
|
|
#include "../stubs/rules/stubDomain.h"
|
|
|
|
|
#include "../stubs/common/stubOperationsDispatcher.h"
|
|
|
|
|
#include "../stubs/common/stubTypeNode.h"
|
2010-03-22 16:59:58 +00:00
|
|
|
|
2018-05-01 22:16:38 +02:00
|
|
|
template class OperationsDispatcher<LocatedEntity>;
|
2019-01-11 21:57:58 +01:00
|
|
|
template struct OpQueEntry<LocatedEntity>;
|
2018-05-01 22:16:38 +02:00
|
|
|
|
2018-02-26 12:05:10 +01:00
|
|
|
#define STUB_LocatedEntity_LocatedEntity_DTOR
|
|
|
|
|
// Deletions and reference count decrements are required to ensure map
|
|
|
|
|
// memory management works correctly.
|
2010-03-22 16:59:58 +00:00
|
|
|
LocatedEntity::~LocatedEntity()
|
|
|
|
|
{
|
2021-06-18 22:44:30 +02:00
|
|
|
if (m_parent) {
|
|
|
|
|
m_parent = nullptr;
|
2012-12-29 01:57:28 +00:00
|
|
|
}
|
2010-03-22 16:59:58 +00:00
|
|
|
}
|
|
|
|
|
|
2018-02-26 12:05:10 +01:00
|
|
|
#define STUB_LocatedEntity_makeContainer
|
2010-03-22 16:59:58 +00:00
|
|
|
void LocatedEntity::makeContainer()
|
|
|
|
|
{
|
2018-07-24 21:18:50 +02:00
|
|
|
if (!m_contains) {
|
2019-11-17 18:43:43 +01:00
|
|
|
m_contains.reset(new LocatedEntitySet);
|
2010-03-22 16:59:58 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2020-01-20 23:17:55 +01:00
|
|
|
#include "../stubs/rules/stubLocatedEntity.h"
|
2017-06-24 21:47:43 +02:00
|
|
|
|
2020-01-20 23:17:55 +01:00
|
|
|
#include "../stubs/common/stubRouter.h"
|
|
|
|
|
#include "../stubs/common/stubLink.h"
|
|
|
|
|
#include "../stubs/server/stubServerRouting.h"
|
|
|
|
|
#include "../stubs/server/stubLobby.h"
|
|
|
|
|
#include "../stubs/common/stubShaker.h"
|
2014-09-29 19:24:05 +02:00
|
|
|
|
2010-03-22 16:59:58 +00:00
|
|
|
long integerId(const std::string & id)
|
|
|
|
|
{
|
|
|
|
|
long intId = strtol(id.c_str(), 0, 10);
|
|
|
|
|
if (intId == 0 && id != "0") {
|
|
|
|
|
intId = -1L;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return intId;
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-20 23:17:55 +01:00
|
|
|
#include "../stubs/common/stublog.h"
|
2010-03-22 16:59:58 +00:00
|
|
|
|
|
|
|
|
static inline float sqr(float x)
|
|
|
|
|
{
|
|
|
|
|
return x * x;
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-20 23:17:55 +01:00
|
|
|
#include "../stubs/rules/stubLocation.h"
|
2019-11-19 19:52:00 +01:00
|
|
|
|
2012-12-29 01:57:28 +00:00
|
|
|
static long idGenerator = 2;
|
2010-03-22 16:59:58 +00:00
|
|
|
|
2022-07-04 15:37:51 +02:00
|
|
|
RouterId newId()
|
2010-03-22 16:59:58 +00:00
|
|
|
{
|
|
|
|
|
if (stub_deny_newid) {
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
long new_id = ++idGenerator;
|
2022-07-04 15:37:51 +02:00
|
|
|
return {new_id};
|
2010-03-22 16:59:58 +00:00
|
|
|
}
|
|
|
|
|
|
2018-07-25 00:16:09 +02:00
|
|
|
#ifndef STUB_BaseWorld_getEntity
|
|
|
|
|
#define STUB_BaseWorld_getEntity
|
2018-08-05 20:47:09 +02:00
|
|
|
Ref<LocatedEntity> BaseWorld::getEntity(const std::string & id) const
|
2010-03-22 16:59:58 +00:00
|
|
|
{
|
2018-07-25 00:16:09 +02:00
|
|
|
return getEntity(integerId(id));
|
2010-03-22 16:59:58 +00:00
|
|
|
}
|
|
|
|
|
|
2018-08-05 20:47:09 +02:00
|
|
|
Ref<LocatedEntity> BaseWorld::getEntity(long id) const
|
2010-03-22 16:59:58 +00:00
|
|
|
{
|
2018-07-25 00:16:09 +02:00
|
|
|
auto I = m_eobjects.find(id);
|
2010-03-22 16:59:58 +00:00
|
|
|
if (I != m_eobjects.end()) {
|
2018-07-25 00:16:09 +02:00
|
|
|
assert(I->second);
|
2010-03-22 16:59:58 +00:00
|
|
|
return I->second;
|
|
|
|
|
} else {
|
2018-07-25 00:16:09 +02:00
|
|
|
return nullptr;
|
2010-03-22 16:59:58 +00:00
|
|
|
}
|
|
|
|
|
}
|
2018-07-25 00:16:09 +02:00
|
|
|
#endif //STUB_BaseWorld_getEntity
|
2010-03-22 16:59:58 +00:00
|
|
|
|
2020-01-20 23:17:55 +01:00
|
|
|
#include "../stubs/rules/simulation/stubBaseWorld.h"
|
2014-02-03 12:19:42 +01:00
|
|
|
|
2014-08-27 22:17:09 +02:00
|
|
|
|
|
|
|
|
|
2018-04-25 20:09:14 +02:00
|
|
|
#ifndef STUB_Inheritance_getType
|
|
|
|
|
#define STUB_Inheritance_getType
|
2018-10-27 13:13:45 +02:00
|
|
|
const TypeNode* Inheritance::getType(const std::string & parent) const
|
2010-03-22 16:59:58 +00:00
|
|
|
{
|
2018-10-27 13:13:45 +02:00
|
|
|
auto I = atlasObjects.find(parent);
|
2010-03-22 16:59:58 +00:00
|
|
|
if (I == atlasObjects.end()) {
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2019-11-17 18:43:43 +01:00
|
|
|
return I->second.get();
|
|
|
|
|
}
|
2018-04-25 20:09:14 +02:00
|
|
|
#endif //STUB_Inheritance_getType
|
|
|
|
|
|
2020-01-20 23:17:55 +01:00
|
|
|
#include "../stubs/common/stubInheritance.h"
|
2018-04-25 20:09:14 +02:00
|
|
|
|
2010-03-22 16:59:58 +00:00
|
|
|
|
2020-01-20 23:17:55 +01:00
|
|
|
#include "../stubs/rules/simulation/stubTask.h"
|
|
|
|
|
#include "../stubs/common/stubVariable.h"
|
|
|
|
|
#include "../stubs/common/stubMonitors.h"
|
|
|
|
|
#include "../stubs/common/stubProperty.h"
|
|
|
|
|
#include "../stubs/common/stubPropertyManager.h"
|
2020-03-22 23:36:52 +01:00
|
|
|
#include "rules/simulation/CorePropertyManager.h"
|
2016-01-18 16:21:00 +01:00
|
|
|
#include "common/Property_impl.h"
|
2010-03-22 16:59:58 +00:00
|
|
|
|
2018-08-04 01:12:45 +02:00
|
|
|
#define STUB_EntityBuilder_newEntity
|
2022-07-04 15:37:51 +02:00
|
|
|
Ref<Entity> EntityBuilder::newEntity(RouterId id,
|
2013-01-17 10:17:07 +00:00
|
|
|
const std::string & type,
|
2020-04-13 15:23:01 +02:00
|
|
|
const RootEntity & attributes) const
|
2010-03-22 16:59:58 +00:00
|
|
|
{
|
|
|
|
|
if (type == "thing") {
|
2022-07-04 15:37:51 +02:00
|
|
|
auto e = new Entity(id);
|
2010-03-22 16:59:58 +00:00
|
|
|
return e;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2020-01-20 23:17:55 +01:00
|
|
|
#include "../stubs/server/stubEntityBuilder.h"
|
|
|
|
|
#include "../stubs/modules/stubWeakEntityRef.h"
|
2010-03-22 16:59:58 +00:00
|
|
|
|