-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathPlayerEngineCommands.java
More file actions
38 lines (37 loc) · 1.48 KB
/
PlayerEngineCommands.java
File metadata and controls
38 lines (37 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package com.player2.playerengine;
import com.player2.playerengine.commands.*;
import com.player2.playerengine.commands.*;
import com.player2.playerengine.commands.random.*;
import com.player2.playerengine.commands.base.CommandException;
public class PlayerEngineCommands {
public static void init(PlayerEngineController controller) throws CommandException {
controller.getCommandExecutor()
.registerNewCommand(
new GetCommand(),
new EquipCommand(),
new BuildStructureCommand(),
new BodyLanguageCommand(),
new DepositCommand(),
new GotoCommand(),
new IdleCommand(),
new HeroCommand(),
new LocateStructureCommand(),
new StopCommand(),
new FoodCommand(),
new MeatCommand(),
new ReloadSettingsCommand(),
new ResetMemoryCommand(),
new GamerCommand(),
new FollowCommand(),
new GiveCommand(),
new ScanCommand(),
new AttackPlayerOrMobCommand(),
new SetAIBridgeEnabledCommand(),
new FarmCommand(),
new SimpleExploreCommand(),
new EatFoodCommand(),
new SetHostileAttackCommand(),
new PickupDropsCommand(),
new FishCommand());
}
}