@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
8 lines • 320 B
TypeScript
import { IPropertyBinding } from "./IPropertyBinding";
export declare abstract class AbstractPropertyBinding<V> implements IPropertyBinding<V> {
protected parent: object;
protected property_name: string;
abstract get(): V;
abstract set(v: V): void;
}
//# sourceMappingURL=AbstractPropertyBinding.d.ts.map