decla-red/backend/src/physics/containers/static-physical.ts
schmelczerandras f9f6825776 Fix physics
2020-10-12 20:49:17 +02:00

6 lines
221 B
TypeScript

import { Physical } from '../physical';
import { ImmutableBoundingBox } from '../bounding-boxes/immutable-bounding-box';
export interface StaticPhysical extends Physical {
readonly boundingBox: ImmutableBoundingBox;
}