diff --git a/Assets/Scripts/Game/Player.cs b/Assets/Scripts/Game/Player.cs index b8eaa2d..3cca02e 100644 --- a/Assets/Scripts/Game/Player.cs +++ b/Assets/Scripts/Game/Player.cs @@ -65,6 +65,15 @@ namespace Game { } public class AIPlayer : Player { + + /* + * Possible optimizations: + * + * - Move to center when idle + * - Ignore impossible balls + * - Try to hit ball with edge + */ + public enum EDifficulty { VeryEasy, Easy, Medium, Hard, VeryHard }