Implement handshake Hello NetControlMessage, recv and send

This commit is contained in:
AeonLucid
2022-01-12 07:26:25 +01:00
parent 0a27bdd3c0
commit 65a28b32ef
50 changed files with 2768 additions and 156 deletions
@@ -0,0 +1,9 @@
namespace Prospect.Unreal.Core;
public static class FPlatformTime
{
public static double Seconds()
{
return DateTimeOffset.UtcNow.ToUnixTimeSeconds();
}
}
+6
View File
@@ -0,0 +1,6 @@
namespace Prospect.Unreal.Core;
public class UObject
{
}