Refactoring Travis
This commit is contained in:
parent
c423e05fc2
commit
e4310b8238
1894 changed files with 54 additions and 320 deletions
13
src/mrdev023/entities/BlockMonster.java
Normal file
13
src/mrdev023/entities/BlockMonster.java
Normal file
|
@ -0,0 +1,13 @@
|
|||
package mrdev023.entities;
|
||||
|
||||
import mrdev023.entities.ia.*;
|
||||
import mrdev023.entities.physics.*;
|
||||
import mrdev023.world.*;
|
||||
|
||||
public class BlockMonster extends Entity{
|
||||
|
||||
public BlockMonster(World world, Physics physics, PathFinding pathFinding) {
|
||||
super(world, physics, pathFinding);
|
||||
}
|
||||
|
||||
}
|
Reference in a new issue