Actor progress

This commit is contained in:
AeonLucid
2022-01-16 23:05:53 +01:00
parent f3b7efca45
commit fe97b7a145
14 changed files with 431 additions and 22 deletions
+13
View File
@@ -1,9 +1,12 @@
using Prospect.Unreal.Core;
using Prospect.Unreal.Runtime;
namespace Prospect.Unreal.Net.Actors;
public class AActor
{
private bool bActorInitialized;
/// <summary>
/// Sets the value of Role without causing other side effects to this instance.
/// </summary>
@@ -32,4 +35,14 @@ public class AActor
// TODO: Implement
throw new NotImplementedException();
}
public UWorld GetWorld()
{
// if ()
}
public bool IsActorInitialized()
{
return bActorInitialized;
}
}