using System.Text.Json.Serialization;
namespace Opium;
public partial class PlayerMechanic : ActorMechanic
{
/// <summary>
/// Gets a reference to the player.
/// </summary>
[Property, JsonIgnore]
public Opium.PlayerController Player => Actor as Opium.PlayerController;
}
