TurtleBrains  0.3.5
High quality, portable, C++ framework for rapid 2D game development.
tb_network.hpp
1 
9 #ifndef TurtleBrains_Network_hpp
10 #define TurtleBrains_Network_hpp
11 
12 #include <turtle_brains/core/tb_configuration.hpp>
13 #if defined(tb_with_networking)
14 
15 #include <turtle_brains/core/tb_types.hpp>
16 
17 namespace TurtleBrains
18 {
19  namespace Network
20  {
31  void UpdateNetworking(const float deltaTime);
32 
33  }; /* namespace Network */
34 }; /* namespace TurtleBrains */
35 
36 namespace tbNetwork = TurtleBrains::Network;
37 
38 #endif /* tb_with_networking */
39 #endif /* TurtleBrains_Network_hpp */
Here is some information about the primary namespace.
Definition: tb_application_dialog.hpp:21