Package org.jbox2d.testbed.framework

Source Code of org.jbox2d.testbed.framework.DefaultWorldCreator

package org.jbox2d.testbed.framework;

import org.jbox2d.common.Vec2;
import org.jbox2d.dynamics.World;

public class DefaultWorldCreator implements WorldCreator {

  @Override
  public World createWorld(Vec2 gravity) {
    return new World(gravity);
  }

}
TOP

Related Classes of org.jbox2d.testbed.framework.DefaultWorldCreator

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.