Skip to content

Commit

Permalink
xrNetServer: fix includes in dumb classes
Browse files Browse the repository at this point in the history
  • Loading branch information
eagleivg committed Oct 4, 2018
1 parent 88193f6 commit dc55bdb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/xrNetServer/empty/NET_Client.h
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#pragma once

#include "Common/Noncopyable.hpp"
#include "NET_Common.h"
#include "NET_Shared.h"
#include "../NET_Common.h"
#include "../NET_Shared.h"
#include "xrCommon/xr_deque.h"
#include "xrCommon/xr_vector.h"
#include "xrCore/xrstring.h"
Expand Down
8 changes: 4 additions & 4 deletions src/xrNetServer/empty/NET_Server.h
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#pragma once

#include "NET_Common.h"
#include "NET_PlayersMonitor.h"
#include "NET_Shared.h"
#include "ip_filter.h"
#include "../NET_Common.h"
#include "../NET_PlayersMonitor.h"
#include "../NET_Shared.h"
#include "../ip_filter.h"

struct SClientConnectData {
ClientID clientID;
Expand Down

0 comments on commit dc55bdb

Please sign in to comment.