Files
fx_cast/ext/src/cast/framework/classes/ActiveInputStateEventData.ts
2022-03-15 07:00:45 +00:00

12 lines
285 B
TypeScript

"use strict";
import EventData from "./EventData";
import { SessionEventType } from "../enums";
export default class ActiveInputStateEventData extends EventData {
constructor(public activeInputState: number) {
super(SessionEventType.ACTIVE_INPUT_STATE_CHANGED);
}
}