diff options
author | David <25727384+ogniK5377@users.noreply.github.com> | 2020-07-21 16:05:47 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-21 16:05:47 +1000 |
commit | e9bfe05e04f4a83cadb2cc036689921defb4e342 (patch) | |
tree | 12910935b977f97b94a3af6ae3210c097940b407 /src/core/core.cpp | |
parent | 3d13d7f48f3bf7c1fb7b7673e963aa3e54db2838 (diff) | |
parent | 51817f6e59e420536901e3225091894ea6ad1b25 (diff) |
Merge pull request #4306 from ReinUsesLisp/bsd-network
core/network: Add network abstraction
Diffstat (limited to 'src/core/core.cpp')
-rw-r--r-- | src/core/core.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp index 69a1aa0a5..e598c0e2b 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp @@ -43,6 +43,7 @@ #include "core/loader/loader.h" #include "core/memory.h" #include "core/memory/cheat_engine.h" +#include "core/network/network.h" #include "core/perf_stats.h" #include "core/reporter.h" #include "core/settings.h" @@ -394,6 +395,9 @@ struct System::Impl { /// Telemetry session for this emulation session std::unique_ptr<Core::TelemetrySession> telemetry_session; + /// Network instance + Network::NetworkInstance network_instance; + ResultStatus status = ResultStatus::Success; std::string status_details = ""; |