/** * This class contains data of an tactic addition event * @author Eirik Måseidvåg */ import History from '../../History'; import { TacticHistoryAdditionOptions } from './types'; import Tactic from '../../../tactic/Tactic'; export default class TacticHistoryAddition extends History { /** * The ID of the tactic added * @public */ readonly tactic: Tactic; constructor(options: TacticHistoryAdditionOptions); }