mirror of
https://github.com/2006-Scape/Parabot-317-API-Minified.git
synced 2026-07-03 00:38:00 +00:00
[CLASS UPDATE] Removing redundant modifiers in multiple interfaces
This commit is contained in:
@@ -7,6 +7,6 @@ import org.rev317.min.api.events.GameActionEvent;
|
||||
*/
|
||||
public interface GameActionListener {
|
||||
|
||||
public void onGameAction(GameActionEvent event);
|
||||
void onGameAction(GameActionEvent event);
|
||||
|
||||
}
|
||||
|
||||
@@ -5,7 +5,7 @@ import org.rev317.min.api.events.MessageEvent;
|
||||
|
||||
public interface MessageListener {
|
||||
|
||||
public void messageReceived(MessageEvent event);
|
||||
void messageReceived(MessageEvent event);
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -2,17 +2,17 @@ package org.rev317.min.api.interfaces;
|
||||
|
||||
public interface TileFlags {
|
||||
|
||||
public int WALL_NORTHWEST = 0x1;
|
||||
public int WALL_NORTH = 0x2;
|
||||
public int WALL_NORTHEAST = 0x4;
|
||||
public int WALL_EAST = 0x8;
|
||||
public int WALL_SOUTHEAST = 0x10;
|
||||
public int WALL_SOUTH = 0x20;
|
||||
public int WALL_SOUTHWEST = 0x40;
|
||||
public int WALL_WEST = 0x80;
|
||||
public int OBJECT_TILE = 0x100;
|
||||
public int UNKNOWN = 0x80000;
|
||||
public int BLOCKED_TILE = 0x200000;
|
||||
public int UNLOADED_TILE = 0x1000000;
|
||||
int WALL_NORTHWEST = 0x1;
|
||||
int WALL_NORTH = 0x2;
|
||||
int WALL_NORTHEAST = 0x4;
|
||||
int WALL_EAST = 0x8;
|
||||
int WALL_SOUTHEAST = 0x10;
|
||||
int WALL_SOUTH = 0x20;
|
||||
int WALL_SOUTHWEST = 0x40;
|
||||
int WALL_WEST = 0x80;
|
||||
int OBJECT_TILE = 0x100;
|
||||
int UNKNOWN = 0x80000;
|
||||
int BLOCKED_TILE = 0x200000;
|
||||
int UNLOADED_TILE = 0x1000000;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user