UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

11 lines (7 loc) 279 B
import {IPropertyBinding} from "./IPropertyBinding"; export abstract class AbstractPropertyBinding<V> implements IPropertyBinding<V>{ protected parent: object protected property_name: string public abstract get(): V public abstract set(v: V): void }