UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

10 lines (7 loc) 234 B
import { MetricsGateway } from "./MetricsGateway.js"; export class NullMetricsGateway extends MetricsGateway { record(type, event) { // do nothing } } NullMetricsGateway.INSTANCE = new NullMetricsGateway();