Skip to content

Commit dc55bdb

Browse files
committed
xrNetServer: fix includes in dumb classes
1 parent 88193f6 commit dc55bdb

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/xrNetServer/empty/NET_Client.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#pragma once
22

33
#include "Common/Noncopyable.hpp"
4-
#include "NET_Common.h"
5-
#include "NET_Shared.h"
4+
#include "../NET_Common.h"
5+
#include "../NET_Shared.h"
66
#include "xrCommon/xr_deque.h"
77
#include "xrCommon/xr_vector.h"
88
#include "xrCore/xrstring.h"

src/xrNetServer/empty/NET_Server.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#pragma once
22

3-
#include "NET_Common.h"
4-
#include "NET_PlayersMonitor.h"
5-
#include "NET_Shared.h"
6-
#include "ip_filter.h"
3+
#include "../NET_Common.h"
4+
#include "../NET_PlayersMonitor.h"
5+
#include "../NET_Shared.h"
6+
#include "../ip_filter.h"
77

88
struct SClientConnectData {
99
ClientID clientID;

0 commit comments

Comments
 (0)