From 91b9930ecb111c2e7ad6d253d91339e621e72593 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Rativel?= Date: Wed, 23 Jun 2021 16:22:48 +0200 Subject: [PATCH] switched all public function by protected --- src/gameplay/Characters/Blue/BlueNormals.java | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/src/gameplay/Characters/Blue/BlueNormals.java b/src/gameplay/Characters/Blue/BlueNormals.java index 71c5d95..bf89b07 100644 --- a/src/gameplay/Characters/Blue/BlueNormals.java +++ b/src/gameplay/Characters/Blue/BlueNormals.java @@ -147,7 +147,7 @@ public class BlueNormals { return(new attackPart(15,0,4,4,8,3,f,false,false,false)); } - public static Attack blueCrouchJab() { + protected static Attack blueCrouchJab() { ButtonIG[][] cmd = {{DOWN,A}}; boolean isSpecial = false; Status rS = Status.NORMAL; @@ -334,7 +334,7 @@ public class BlueNormals { return(new attackPart(90,0,13,29,12,5,f,false,false,false)); } - public static Attack blueCrouchFierce() { + protected static Attack blueCrouchFierce() { ButtonIG[][] cmd = {{DOWN,C}}; boolean isSpecial = false; Status rS = Status.NORMAL; @@ -452,7 +452,7 @@ public class BlueNormals { return(new attackPart(15,0,9,8,10,5,f,false,false,false)); } - public static Attack blueCrouchShort() { + protected static Attack blueCrouchShort() { ButtonIG[][] cmd = {{DOWN,B}}; boolean isSpecial = false; Status rS = Status.NORMAL; @@ -600,7 +600,7 @@ public class BlueNormals { return(new attackPart(120,0,31,10,30,15,f,true,false,true)); } - public static Attack blueCrouchRoundHouse() { + protected static Attack blueCrouchRoundHouse() { ButtonIG[][] cmd = {{DOWN,D}}; boolean isSpecial = false; Status rS = Status.NORMAL; @@ -735,7 +735,7 @@ public class BlueNormals { return(new attackPart(80,0,4,4,8,3,f,false,false,false)); } - public static Attack blueStandJab() { + protected static Attack blueStandJab() { ButtonIG[][] cmd = {{A}}; boolean isSpecial = false; Status rS = Status.NORMAL; @@ -882,7 +882,7 @@ public class BlueNormals { return(new attackPart(100,0,28,14,10,5,f,false,false,false)); } - public static Attack blueStandFierce() { + protected static Attack blueStandFierce() { ButtonIG[][] cmd = {{C}}; boolean isSpecial = false; Status rS = Status.NORMAL; @@ -1085,7 +1085,7 @@ public class BlueNormals { return(new attackPart(f)); } - public static Attack blueStandHeavyKick() { + protected static Attack blueStandHeavyKick() { ButtonIG[][] cmd = {{D}}; boolean isSpecial = false; Status rS = Status.NORMAL; @@ -1201,7 +1201,7 @@ public class BlueNormals { return(new attackPart(f)); } - public static Attack blueStandShort() { + protected static Attack blueStandShort() { ButtonIG[][] cmd = {{B}}; boolean isSpecial = false; Status rS = Status.NORMAL; @@ -1419,7 +1419,7 @@ public class BlueNormals { return(new attackPart(70,0,11,3,8.0,4.0,f,false,true,false)); } - public static Attack blueFordwardRoundHouse() { + protected static Attack blueFordwardRoundHouse() { ButtonIG[][] cmd = {{FORWARD,D}}; boolean isSpecial = false; Status rS = Status.NORMAL; @@ -1535,7 +1535,7 @@ public class BlueNormals { return(new attackPart(f)); } - public static Attack blueJumpJab() { + protected static Attack blueJumpJab() { ButtonIG[][] cmd = {{A}}; boolean isSpecial = false; Status rS = Status.JUMPING; @@ -1651,7 +1651,7 @@ public class BlueNormals { return(new attackPart(f)); } - public static Attack blueJumpFierce() { + protected static Attack blueJumpFierce() { ButtonIG[][] cmd = {{C}}; boolean isSpecial = false; Status rS = Status.JUMPING; @@ -1767,7 +1767,7 @@ public class BlueNormals { return(new attackPart(f)); } - public static Attack blueJumpShort() { + protected static Attack blueJumpShort() { ButtonIG[][] cmd = {{B}}; boolean isSpecial = false; Status rS = Status.JUMPING; @@ -1883,7 +1883,7 @@ public class BlueNormals { return(new attackPart(f)); } - public static Attack blueJumpRoundHouse() { + protected static Attack blueJumpRoundHouse() { ButtonIG[][] cmd = {{D}}; boolean isSpecial = false; Status rS = Status.JUMPING;