Table of Contents

Class PiActor<T>

Namespace
Pillars.Core.Actors.Models
Assembly
Pillars.dll

Represents an abstract base class for actors in the game world.

public abstract class PiActor<T> where T : Actor

Type Parameters

T

The type of actor to spawn, which must derive from HogWarpSdk.Game.Actor.

Inheritance
PiActor<T>
Derived
Inherited Members

Remarks

This class is responsible for spawning an instance of the specified actor type (T) in the game world. If the actor cannot be spawned, an exception is thrown.

Fields

_worldActor

The spawned world actor instance.