Browse Source

NX Repo equiv. commit: 14e8a3a. 6 commits compressed into 1, you're welcome.

Matthew Coburn 6 years ago
parent
commit
c816403942
3 changed files with 344 additions and 503 deletions
  1. 1 0
      .gitignore
  2. 2 2
      Source/Managed/ENet.cs
  3. 341 501
      Source/Native/enet.h

+ 1 - 0
.gitignore

@@ -1,2 +1,3 @@
 README.md
 README.md
 Source/Native/build/
 Source/Native/build/
+*.bak

+ 2 - 2
Source/Managed/ENet.cs

@@ -873,7 +873,7 @@ namespace ENet {
 		public const uint timeoutLimit = 32;
 		public const uint timeoutLimit = 32;
 		public const uint timeoutMinimum = 5000;
 		public const uint timeoutMinimum = 5000;
 		public const uint timeoutMaximum = 30000;
 		public const uint timeoutMaximum = 30000;
-		public const uint version = (2 << 16) | (2 << 8) | (8);
+		public const uint version = (2 << 16) | (2 << 8) | (9);
 
 
 		public static bool Initialize() {
 		public static bool Initialize() {
 			return Native.enet_initialize() == 0;
 			return Native.enet_initialize() == 0;
@@ -1082,4 +1082,4 @@ namespace ENet {
 		[DllImport(nativeLibrary, CallingConvention = CallingConvention.Cdecl)]
 		[DllImport(nativeLibrary, CallingConvention = CallingConvention.Cdecl)]
 		internal static extern void enet_peer_reset(IntPtr peer);
 		internal static extern void enet_peer_reset(IntPtr peer);
 	}
 	}
-}
+}

File diff suppressed because it is too large
+ 341 - 501
Source/Native/enet.h


Some files were not shown because too many files changed in this diff