phaser3-rex-plugins
Version:
19 lines (14 loc) • 371 B
TypeScript
import BaseClock from "./BaseClock";
export default ArcadeStepClock;
declare namespace ArcadeStepClock {
/**
* Configuration options for creating an ArcadeStepClock.
*/
interface IConfig extends BaseClock.IConfig {
}
}
/**
* Clock implementation for arcade step timing.
*/
declare class ArcadeStepClock extends BaseClock {
}