Gamedev Framework (gf)  0.17.0
A C++14 framework for 2D games
Modules
Network

All the classes related to network. More...

Modules

 Network sockets
 The classes related to socket handling.
 

Detailed Description

All the classes related to network.

Using the net module

All the types and functions of the net module are defined in libgfnet0. In order to use this library, you can use cmake and add the following in your CMakeLists.txt:

find_package(gfnet REQUIRED)
# ...
target_link_libraries(mygame
PRIVATE
gfnet::gfnet0
)