Make physics more fun
This commit is contained in:
parent
155e360c8e
commit
89fafeafd3
41 changed files with 511 additions and 334 deletions
6
backend/src/physics/physicals/dynamic-physical.ts
Normal file
6
backend/src/physics/physicals/dynamic-physical.ts
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
import { PhysicalBase } from './physical-base';
|
||||
|
||||
export interface DynamicPhysical extends PhysicalBase {
|
||||
readonly canMove: true;
|
||||
step(deltaTimeInMilliseconds: number): void;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue