mirror of
https://github.com/2006-Scape/apollo.git
synced 2026-07-07 16:49:12 +00:00
Order CollisionFlags.
This commit is contained in:
@@ -9,16 +9,16 @@ import org.apollo.game.model.entity.Entity.EntityType;
|
|||||||
*/
|
*/
|
||||||
public enum CollisionFlag {
|
public enum CollisionFlag {
|
||||||
|
|
||||||
/**
|
|
||||||
* The walk east flag.
|
|
||||||
*/
|
|
||||||
MOB_EAST(1),
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The walk north flag.
|
* The walk north flag.
|
||||||
*/
|
*/
|
||||||
MOB_NORTH(0),
|
MOB_NORTH(0),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The walk east flag.
|
||||||
|
*/
|
||||||
|
MOB_EAST(1),
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The walk south flag.
|
* The walk south flag.
|
||||||
*/
|
*/
|
||||||
@@ -29,16 +29,16 @@ public enum CollisionFlag {
|
|||||||
*/
|
*/
|
||||||
MOB_WEST(3),
|
MOB_WEST(3),
|
||||||
|
|
||||||
/**
|
|
||||||
* The projectile east flag.
|
|
||||||
*/
|
|
||||||
PROJECTILE_EAST(5),
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The projectile north flag.
|
* The projectile north flag.
|
||||||
*/
|
*/
|
||||||
PROJECTILE_NORTH(4),
|
PROJECTILE_NORTH(4),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The projectile east flag.
|
||||||
|
*/
|
||||||
|
PROJECTILE_EAST(5),
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The projectile south flag.
|
* The projectile south flag.
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user