Skip to content

@lands.io/mod-sdk / ScenarioPlayerSpec

Interface: ScenarioPlayerSpec

Table of contents

Properties

Properties

flag

Optional flag: string


id

id: string


name

name: string


skin

Optional skin: number


type

type: PlayerType


Source Code

View full implementation
export interface ScenarioPlayerSpec {
  id: PlayerID;
  name: string;
  type: PlayerType;
  flag?: string;
  skin?: number;
}