refactor: physics restructure

This commit is contained in:
cha0s 2019-03-24 00:46:49 -05:00
parent e2d9151c02
commit 7e0458f3b8
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ import {EntityList} from '@avocado/entity';
import {ActionRegistry} from '@avocado/input';
import {Container, Renderer, ShapeView} from '@avocado/graphics';
import {shapeFromJSON} from '@avocado/physics';
import {World} from '@avocado/physics/dummy';
import {World} from '@avocado/physics/dummy/world';
import {StateSynchronizer} from '@avocado/state';
import {Animation} from '@avocado/timing';

View File

@ -8,7 +8,7 @@ import {
EntityList,
registerTrait,
} from '@avocado/entity';
import {World} from '@avocado/physics/dummy';
import {World} from '@avocado/physics/dummy/world';
import {StateSynchronizer} from '@avocado/state';
// Create game.
export default function(avocadoServer) {