Skip to content
Snippets Groups Projects
Commit 50889d6d authored by Piers Williams's avatar Piers Williams
Browse files

Refactored to handle the package change

parent d87fe47f
No related branches found
No related tags found
No related merge requests found
Showing
with 63 additions and 58 deletions
package com.fossgalaxy.games.ggj2017;
import com.fossgalaxy.games.ggj2017.drones.DroneBuildAction;
import com.fossgalaxy.games.rts.GameState;
import com.fossgalaxy.games.rts.entity.Entity;
import com.fossgalaxy.games.rts.entity.EntityType;
import com.fossgalaxy.games.rts.entity.Resource;
import com.fossgalaxy.games.rts.entity.ResourceType;
import com.fossgalaxy.games.tbs.GameState;
import com.fossgalaxy.games.tbs.entity.Entity;
import com.fossgalaxy.games.tbs.entity.EntityType;
import com.fossgalaxy.games.tbs.entity.Resource;
import com.fossgalaxy.games.tbs.entity.ResourceType;
import com.fossgalaxy.object.annotations.ObjectDef;
import org.codetome.hexameter.core.api.CubeCoordinate;
......
package com.fossgalaxy.games.ggj2017;
import com.fossgalaxy.games.rts.GameDef;
import com.fossgalaxy.games.rts.GameState;
import com.fossgalaxy.games.rts.ai.Controller;
import com.fossgalaxy.games.rts.entity.Entity;
import com.fossgalaxy.games.rts.entity.ResourceType;
import com.fossgalaxy.games.rts.io.SettingsIO;
import com.fossgalaxy.games.rts.order.Order;
import com.fossgalaxy.games.rts.order.OrderProcessor;
import com.fossgalaxy.games.rts.rules.Rule;
import com.fossgalaxy.games.rts.ui.*;
import com.fossgalaxy.games.tbs.GameDef;
import com.fossgalaxy.games.tbs.GameState;
import com.fossgalaxy.games.tbs.ai.Controller;
import com.fossgalaxy.games.tbs.entity.Entity;
import com.fossgalaxy.games.tbs.entity.ResourceType;
import com.fossgalaxy.games.tbs.io.SettingsIO;
import com.fossgalaxy.games.tbs.order.Order;
import com.fossgalaxy.games.tbs.order.OrderProcessor;
import com.fossgalaxy.games.tbs.rules.Rule;
import com.fossgalaxy.games.tbs.ui.*;
import javax.swing.*;
import java.awt.*;
......
package com.fossgalaxy.games.ggj2017;
import com.fossgalaxy.games.rts.GameState;
import com.fossgalaxy.games.rts.entity.Entity;
import com.fossgalaxy.games.rts.entity.Resource;
import com.fossgalaxy.games.rts.entity.ResourceType;
import com.fossgalaxy.games.rts.order.Order;
import com.fossgalaxy.games.tbs.GameState;
import com.fossgalaxy.games.tbs.entity.Entity;
import com.fossgalaxy.games.tbs.entity.Resource;
import com.fossgalaxy.games.tbs.entity.ResourceType;
import com.fossgalaxy.games.tbs.order.Order;
public class MineOrder implements Order {
......
package com.fossgalaxy.games.ggj2017;
import com.fossgalaxy.games.rts.GameState;
import com.fossgalaxy.games.rts.ui.UIModel;
import com.fossgalaxy.games.tbs.GameState;
import com.fossgalaxy.games.tbs.ui.UIModel;
import javax.swing.*;
import java.awt.*;
......
package com.fossgalaxy.games.ggj2017;
import com.fossgalaxy.games.rts.GameState;
import com.fossgalaxy.games.rts.entity.Entity;
import com.fossgalaxy.games.rts.entity.EntityType;
import com.fossgalaxy.games.rts.order.Order;
import com.fossgalaxy.games.tbs.GameState;
import com.fossgalaxy.games.tbs.entity.Entity;
import com.fossgalaxy.games.tbs.entity.EntityType;
import com.fossgalaxy.games.tbs.order.Order;
public class UpgradeOrder implements Order {
private EntityType from;
......
package com.fossgalaxy.games.ggj2017.drones;
import com.fossgalaxy.games.rts.GameState;
import com.fossgalaxy.games.rts.actions.RangeAttackAction;
import com.fossgalaxy.games.rts.entity.Entity;
import com.fossgalaxy.games.tbs.GameState;
import com.fossgalaxy.games.tbs.actions.RangeAttackAction;
import com.fossgalaxy.games.tbs.entity.Entity;
import com.fossgalaxy.object.annotations.ObjectDef;
import org.codetome.hexameter.core.api.CubeCoordinate;
......
package com.fossgalaxy.games.ggj2017.drones;
import com.fossgalaxy.games.rts.GameState;
import com.fossgalaxy.games.rts.actions.BuildAction;
import com.fossgalaxy.games.rts.entity.Entity;
import com.fossgalaxy.games.rts.entity.EntityType;
import com.fossgalaxy.games.rts.order.BuildOrder;
import com.fossgalaxy.games.rts.order.Order;
import com.fossgalaxy.games.tbs.GameState;
import com.fossgalaxy.games.tbs.actions.BuildAction;
import com.fossgalaxy.games.tbs.entity.Entity;
import com.fossgalaxy.games.tbs.entity.EntityType;
import com.fossgalaxy.games.tbs.order.BuildOrder;
import com.fossgalaxy.games.tbs.order.Order;
import com.fossgalaxy.object.annotations.ObjectDef;
import org.codetome.hexameter.core.api.CubeCoordinate;
......
package com.fossgalaxy.games.ggj2017.drones;
import com.fossgalaxy.games.ggj2017.BuildOnResourceAction;
import com.fossgalaxy.games.rts.GameState;
import com.fossgalaxy.games.rts.entity.Entity;
import com.fossgalaxy.games.rts.entity.EntityType;
import com.fossgalaxy.games.rts.entity.ResourceType;
import com.fossgalaxy.games.rts.order.BuildOrder;
import com.fossgalaxy.games.rts.order.Order;
import com.fossgalaxy.games.tbs.GameState;
import com.fossgalaxy.games.tbs.entity.Entity;
import com.fossgalaxy.games.tbs.entity.EntityType;
import com.fossgalaxy.games.tbs.entity.ResourceType;
import com.fossgalaxy.games.tbs.order.BuildOrder;
import com.fossgalaxy.games.tbs.order.Order;
import com.fossgalaxy.object.annotations.ObjectDef;
import org.codetome.hexameter.core.api.CubeCoordinate;
......
package com.fossgalaxy.games.ggj2017.drones;
import com.fossgalaxy.games.rts.GameState;
import com.fossgalaxy.games.rts.actions.MinesAction;
import com.fossgalaxy.games.rts.entity.Entity;
import com.fossgalaxy.games.rts.entity.ResourceType;
import com.fossgalaxy.games.tbs.GameState;
import com.fossgalaxy.games.tbs.actions.MinesAction;
import com.fossgalaxy.games.tbs.entity.Entity;
import com.fossgalaxy.games.tbs.entity.ResourceType;
import com.fossgalaxy.object.annotations.ObjectDef;
import org.codetome.hexameter.core.api.CubeCoordinate;
......
package com.fossgalaxy.games.ggj2017.drones;
import com.fossgalaxy.games.rts.GameState;
import com.fossgalaxy.games.rts.actions.MoveAction;
import com.fossgalaxy.games.rts.entity.Entity;
import com.fossgalaxy.games.rts.order.MoveOrder;
import com.fossgalaxy.games.rts.order.Order;
import com.fossgalaxy.games.tbs.GameState;
import com.fossgalaxy.games.tbs.actions.MoveAction;
import com.fossgalaxy.games.tbs.entity.Entity;
import com.fossgalaxy.games.tbs.order.MoveOrder;
import com.fossgalaxy.games.tbs.order.Order;
import com.fossgalaxy.object.annotations.ObjectDef;
import org.codetome.hexameter.core.api.CubeCoordinate;
......
package com.fossgalaxy.games.ggj2017.drones;
import com.fossgalaxy.games.rts.GameState;
import com.fossgalaxy.games.rts.actions.UpgradeAction;
import com.fossgalaxy.games.rts.entity.Entity;
import com.fossgalaxy.games.rts.entity.EntityType;
import com.fossgalaxy.games.tbs.GameState;
import com.fossgalaxy.games.tbs.actions.UpgradeAction;
import com.fossgalaxy.games.tbs.entity.Entity;
import com.fossgalaxy.games.tbs.entity.EntityType;
import com.fossgalaxy.object.annotations.ObjectDef;
import org.codetome.hexameter.core.api.CubeCoordinate;
......
package com.fossgalaxy.games.ggj2017.drones;
import com.fossgalaxy.games.rts.GameState;
import com.fossgalaxy.games.rts.entity.Entity;
import com.fossgalaxy.games.rts.entity.HexagonTile;
import com.fossgalaxy.games.rts.io.SpriteRegistry;
import com.fossgalaxy.games.tbs.GameState;
import com.fossgalaxy.games.tbs.entity.Entity;
import com.fossgalaxy.games.tbs.entity.HexagonTile;
import com.fossgalaxy.games.tbs.io.SpriteRegistry;
import org.codetome.hexameter.core.api.Hexagon;
import java.awt.*;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment