Started on spawning a player actor

This commit is contained in:
AeonLucid
2022-01-13 02:00:36 +01:00
parent a7399a1960
commit 6cd03d9ff7
9 changed files with 173 additions and 20 deletions
@@ -1,4 +1,7 @@
namespace Prospect.Unreal.Net.Actors;
using Prospect.Unreal.Core;
using Prospect.Unreal.Runtime;
namespace Prospect.Unreal.Net.Actors;
public class AGameModeBase : AInfo
{
@@ -7,4 +10,16 @@ public class AGameModeBase : AInfo
// Login unique id must match server expected unique id type OR No unique id could mean game doesn't use them
errorMessage = null;
}
public APlayerController? Login(UPlayer newPlayer, ENetRole inRemoteRole, string portal, string options, FUniqueNetIdRepl uniqueId, out string errorMessage)
{
errorMessage = string.Empty;
throw new NotImplementedException();
return null;
}
public void PostLogin(APlayerController newPlayer)
{
throw new NotImplementedException();
}
}