|
@@ -528,7 +528,7 @@ namespace ENet {
|
|
|
|
|
|
|
|
public struct Peer {
|
|
public struct Peer {
|
|
|
private IntPtr nativePeer;
|
|
private IntPtr nativePeer;
|
|
|
- private uint? nativeID;
|
|
|
|
|
|
|
+ private uint nativeID;
|
|
|
|
|
|
|
|
internal IntPtr NativeData {
|
|
internal IntPtr NativeData {
|
|
|
get {
|
|
get {
|
|
@@ -553,7 +553,7 @@ namespace ENet {
|
|
|
|
|
|
|
|
public uint ID {
|
|
public uint ID {
|
|
|
get {
|
|
get {
|
|
|
- return nativeID ?? 0;
|
|
|
|
|
|
|
+ return nativeID;
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
|