untitledTextAdventure/src/main/java/game/logic/actionsystem/PlayerActionExecutor.java

22 lines
447 B
Java

package game.logic.actionsystem;
import game.logic.GameLogic;
import game.state.Entity;
/**
* A player action executor provides specific instructions how to manipulate the
* game logic.
*/
public class PlayerActionExecutor {
/**
* Executes the game logic manupulation.
*
* @param logic The game logic
* @param args Arguments
*/
public void execute(GameLogic logic, Entity... args) {
// TODO
}
}