UNPKG

stratagem

Version:

A lightweight node module for simulating turn-based role-playing game battles

10 lines (9 loc) 146 B
export default class Event { constructor(type) { this.type = type this.canceled = false } cancel() { this.canceled = true } }