LeviLamina
Loading...
Searching...
No Matches
AdapterAttributes.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace RakNet {
6
7enum class AdapterAttributes : int {
8 // bitfield representation
9 NoAttributes = 0,
10 IsMulticast = 1 << 0,
11 IsLoopback = 1 << 1,
12 HasNoGateway = 1 << 2,
13};
14
15}