@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
13 lines (9 loc) • 501 B
TypeScript
import {ModuleRegistry} from "../../../../../core/model/ModuleRegistry";
import {EntityPathMarkerDefinition} from "./EntityPathMarkerDefinition";
export class EntityPathStyle {
public marker_start: EntityPathMarkerDefinition
public marker_end: EntityPathMarkerDefinition
public marker_main: EntityPathMarkerDefinition
public spacing: number
fromJSON(json: { marker_start: any, marker_end: any, marker_main: any, spacing?: number }, registry: ModuleRegistry): void
}