UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

32 lines 683 B
export class AttachmentSocket { /** * * @param j * @returns {AttachmentSocket} */ static fromJSON(j: any): AttachmentSocket; /** * * @type {String} */ id: string; /** * Transform of the socket relative to the entity * @readonly * @type {Transform} */ readonly transform: Transform; fromJSON(j: any): void; /** * * @param {AttachmentSocket} other */ copy(other: AttachmentSocket): void; /** * * @return {AttachmentSocket} */ clone(): AttachmentSocket; } import { Transform } from "../transform/Transform.js"; //# sourceMappingURL=AttachmentSocket.d.ts.map