Skip to content

@lands.io/mod-sdk / BaseIntent

Interface: BaseIntent

Base intent fields that all intents share

Hierarchy

  • BaseIntent

ModIntent

Table of contents

Properties

Properties

clientID

clientID: string


playerID

playerID: string


type

type: string


Source Code

View full implementation
/** Base intent fields that all intents share */
export interface BaseIntent {
  type: string;
  clientID: string;
  playerID: string;
}