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
@@ -27,27 +27,27 @@ public class FetidRatSprite extends MobSprite {
private Emitter cloud;
public FetidRatSprite() {
super();
public FetidRatSprite() {
super();
texture( Assets.RAT );
texture( Assets.RAT );
TextureFilm frames = new TextureFilm( texture, 16, 15 );
TextureFilm frames = new TextureFilm( texture, 16, 15 );
idle = new Animation( 2, true );
idle.frames( frames, 32, 32, 32, 33 );
idle = new Animation( 2, true );
idle.frames( frames, 32, 32, 32, 33 );
run = new Animation( 10, true );
run.frames( frames, 38, 39, 40, 41, 42 );
run = new Animation( 10, true );
run.frames( frames, 38, 39, 40, 41, 42 );
attack = new Animation( 15, false );
attack.frames( frames, 34, 35, 36, 37, 32 );
attack = new Animation( 15, false );
attack.frames( frames, 34, 35, 36, 37, 32 );
die = new Animation( 10, false );
die.frames( frames, 43, 44, 45, 46 );
die = new Animation( 10, false );
die.frames( frames, 43, 44, 45, 46 );
play( idle );
}
play( idle );
}
@Override
public void link( Char ch ) {