import { TPhysicsBody, TPhysicsBodyParams } from '../../Physics'; import { TWithMandatoryField } from '@hellpig/anarchy-shared/Utils'; import { TTransformAgentParams } from './TTransformAgentParams'; export type TPhysicsTransformAgentParams = TTransformAgentParams & Readonly<{ physicsBody: TPhysicsBody; }>; export type TPhysicsTransformAgentInternalParams = Omit & TWithMandatoryField;