mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-22 22:34:33 +01:00
16 lines
231 B
C++
16 lines
231 B
C++
#pragma once
|
|
|
|
#include "NetworkBase.h"
|
|
|
|
#ifndef DISABLE_NETWORK
|
|
|
|
namespace OpenRCT2::Network
|
|
{
|
|
class NetworkClient final : public NetworkBase
|
|
{
|
|
public:
|
|
};
|
|
} // namespace OpenRCT2::Network
|
|
|
|
#endif // DISABLE_NETWORK
|