Example usage for com.badlogic.gdx.physics.box2d World dispose

List of usage examples for com.badlogic.gdx.physics.box2d World dispose

Introduction

In this page you can find the example usage for com.badlogic.gdx.physics.box2d World dispose.

Prototype

public void dispose() 

Source Link

Usage

From source file:com.jemge.box2d.Physics2D.java

License:Apache License

@Override
public void dispose() {
    for (World world : worlds.values()) {
        world.dispose();
    }
}