Enzo
Loading...
Searching...
No Matches
Serializer.h
1#include "Engine/Network/NetworkManager.h"
2
3namespace enzo::nt {
4
6{
7 public:
9 void save(NetworkManager& networkManager, std::string filePath);
10
14 void load(NetworkManager& networkManager, std::string filePath);
15};
16
17} // namespace enzo::nt
The central coordinator of the engine's node system.
Definition NetworkManager.h:31
Definition Serializer.h:6
void save(NetworkManager &networkManager, std::string filePath)
Writes a network out to a file.
Definition Serializer.cpp:117
void load(NetworkManager &networkManager, std::string filePath)
Reads a file into the network, replacing whatever was there.
Definition Serializer.cpp:161