vendor ENet

This commit is contained in:
Dale Weiler
2021-10-23 07:40:40 -04:00
parent eebf49ba72
commit e15f245339
9 changed files with 736 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
package ENet
ListNode :: struct {
next: ^ListNode,
previous: ^ListNode,
}
List :: struct {
sentinel: ListNode,
}