builtin/{network,client_file}: Tweak and fix minor things

This commit is contained in:
Perttu Ahola 2014-10-01 09:25:24 +03:00
parent e1b33c08c0
commit 272a2dc7bf
4 changed files with 8 additions and 2 deletions

View File

@ -1,2 +1,5 @@
{ {
"dependencies": [
{"module": "network"}
]
} }

View File

@ -2,6 +2,8 @@
// Copyright 2014 Perttu Ahola <celeron55@gmail.com> // Copyright 2014 Perttu Ahola <celeron55@gmail.com>
#pragma once #pragma once
#include "interface/event.h" #include "interface/event.h"
#include "interface/server.h"
#include "interface/module.h"
#include <functional> #include <functional>
namespace network namespace network

View File

@ -1,12 +1,12 @@
// http://www.apache.org/licenses/LICENSE-2.0 // http://www.apache.org/licenses/LICENSE-2.0
// Copyright 2014 Perttu Ahola <celeron55@gmail.com> // Copyright 2014 Perttu Ahola <celeron55@gmail.com>
#include "network/api.h"
#include "core/log.h"
#include "interface/module.h" #include "interface/module.h"
#include "interface/server.h" #include "interface/server.h"
#include "interface/event.h" #include "interface/event.h"
#include "interface/tcpsocket.h" #include "interface/tcpsocket.h"
#include "interface/packet_stream.h" #include "interface/packet_stream.h"
#include "network/api.h"
#include "core/log.h"
#include <cereal/archives/portable_binary.hpp> #include <cereal/archives/portable_binary.hpp>
#include <cereal/types/vector.hpp> #include <cereal/types/vector.hpp>
#include <cereal/types/tuple.hpp> #include <cereal/types/tuple.hpp>

View File

@ -25,3 +25,4 @@ Buildat TODO
- Entity system with automated network sync - Entity system with automated network sync
- Support Cereal's shared pointer serialization in Lua - Support Cereal's shared pointer serialization in Lua
- Something in uistack's global nil focus handling has broken - Something in uistack's global nil focus handling has broken
- Automatically fetch and build and patch Urho3D when building buildat