slp-enforcer
Version:
Finds violations of the Melee Controller Ruleset by inspecting SLP files
9 lines (8 loc) • 353 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const index_1 = require("./index");
function controlStickViz(game, playerIndex, coords) {
let coordViolation = new index_1.Violation(0, "Control Stick Viz", coords);
return new index_1.CheckResult(false, [coordViolation]);
}
exports.controlStickViz = controlStickViz;