cleaned up formatting:

- removed trailing whitespace
- changed all leading whitespace to tabs
- removed IDE created author comments
This commit is contained in:
Evan Debenham
2015-06-12 16:22:26 -04:00
parent baa83b7e43
commit cebdff0221
335 changed files with 8555 additions and 8714 deletions
@@ -32,8 +32,8 @@ public class DungeonTilemap extends Tilemap {
private static DungeonTilemap instance;
public DungeonTilemap() {
super(
Dungeon.level.tilesTex(),
super(
Dungeon.level.tilesTex(),
new TextureFilm( Dungeon.level.tilesTex(), SIZE, SIZE ) );
map( Dungeon.level.map, Level.WIDTH );
@@ -76,8 +76,8 @@ public class DungeonTilemap extends Tilemap {
}
public static PointF tileCenterToWorld( int pos ) {
return new PointF(
(pos % Level.WIDTH + 0.5f) * SIZE,
return new PointF(
(pos % Level.WIDTH + 0.5f) * SIZE,
(pos / Level.WIDTH + 0.5f) * SIZE );
}