commit dcdf352fa1884b74453ac54c79f871f7108ae163
parent 0148bba5539385809fab2d37c29135b389b4b8e3
Author: kel <distransient@protonmail.com>
Date: Thu, 31 Jan 2019 03:03:47 -0500
Fix some includes
Diffstat:
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/examples/amethyst.rs b/examples/amethyst.rs
@@ -8,10 +8,8 @@ use amethyst::renderer::{
Stage, Texture,
};
use amethyst::{Application, GameData, GameDataBuilder, SimpleState, StateData};
-use nalgebra::Isometry3;
-use nphysics_ecs_dumb::ncollide::shape::{Ball, Cuboid, ShapeHandle};
-use nphysics_ecs_dumb::nphysics::math::{Point, Velocity};
-use nphysics_ecs_dumb::nphysics::object::BodyHandle;
+use nphysics_ecs_dumb::ncollide::shape::{Ball, ShapeHandle};
+use nphysics_ecs_dumb::nphysics::math::Velocity;
use nphysics_ecs_dumb::nphysics::object::Material as PhysicsMaterial;
use nphysics_ecs_dumb::nphysics::volumetric::Volumetric;
use nphysics_ecs_dumb::*;