interface ExperienceDistributorActor {
    actor: ActorPF;
    id: string;
    isNPC: boolean;
    selected: boolean;
    xp: number;
    xpString: string;
}

Properties

actor: ActorPF

Actor instance

id: string

Internal reference ID

isNPC: boolean

Is this an NPC?

selected: boolean

Is the actor selected

xp: number
xpString: string