1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-19 04:53:12 +01:00

Apply code review suggestions

This commit is contained in:
Ted John
2020-08-26 01:56:50 +01:00
parent 76dded4e1e
commit 173a42f656
3 changed files with 54 additions and 37 deletions

View File

@@ -19,6 +19,7 @@
# include "Plugin.h"
# include <future>
# include <list>
# include <memory>
# include <mutex>
# include <queue>
@@ -138,7 +139,7 @@ namespace OpenRCT2::Scripting
std::unordered_map<std::string, CustomActionInfo> _customActions;
# ifndef DISABLE_NETWORK
std::vector<std::shared_ptr<ScSocketBase>> _sockets;
std::list<std::shared_ptr<ScSocketBase>> _sockets;
# endif
public: