UNPKG

dualsense-ts

Version:

A natural interface for your DualSense controller, with Typescript

8 lines (6 loc) 196 B
import { Input } from "../input"; /** Container for counters associated with other inputs */ export class Increment extends Input<number> { public state: number = 0; public active = false; }