Handle NMT Login packet

This commit is contained in:
AeonLucid
2022-01-13 01:04:54 +01:00
parent 65a28b32ef
commit 7c6353c475
21 changed files with 722 additions and 57 deletions
@@ -0,0 +1,13 @@
using Prospect.Unreal.Core;
using Prospect.Unreal.Net.Actors;
namespace Prospect.Unreal.Runtime;
public class UGameInstance
{
public AGameModeBase? CreateGameModeForURL(FUrl inUrl, UWorld inWorld)
{
// TODO: World.SpawnActor
return new AGameModeBase();
}
}