feat: add network manager and GeometryOperator

This commit is contained in:
parker
2025-07-03 18:41:36 +01:00
parent 503ca43713
commit a255b9a37c
7 changed files with 73 additions and 0 deletions

10
tests/NetworkTests.cpp Normal file
View File

@@ -0,0 +1,10 @@
#include <catch2/catch_test_macros.hpp>
#include "Engine/Network/NetworkManager.h"
TEST_CASE("network")
{
enzo::nt::NetworkManager networkManager;
networkManager.addOperator();
}