slp-enforcer
Version:
Finds violations of the Melee Controller Ruleset by inspecting SLP files
11 lines (10 loc) • 416 B
TypeScript
import type { FrameEntryType, GameStartType } from "../types";
import type { ActionCountsType } from "./common";
import type { StatComputer } from "./stats";
export declare class ActionsComputer implements StatComputer<ActionCountsType[]> {
private playerPermutations;
private state;
setup(settings: GameStartType): void;
processFrame(frame: FrameEntryType): void;
fetch(): ActionCountsType[];
}