From 8030ecb8002f9b4d884f21e17be350f4b5716def Mon Sep 17 00:00:00 2001 From: MagicBot Date: Mon, 17 Feb 2025 04:45:38 -0500 Subject: [PATCH] Behaviour class defined --- src/engine/wpakpowers/Behaviour.java | 72 ++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 src/engine/wpakpowers/Behaviour.java diff --git a/src/engine/wpakpowers/Behaviour.java b/src/engine/wpakpowers/Behaviour.java new file mode 100644 index 00000000..7e09e5e4 --- /dev/null +++ b/src/engine/wpakpowers/Behaviour.java @@ -0,0 +1,72 @@ +package engine.wpakpowers; + +public class Behaviour { + + public static void Behaviour() { + System.out.println("Behavior method called"); + } + + public static void Flag() { + System.out.println("Behavior method called"); + } + + public static void MapIntToInts() { + System.out.println("Behavior method called"); + } + + public static void Standard() { + System.out.println("Behavior method called"); + } + + public static void FPSubTypeAttr() { + System.out.println("Behavior method called"); + } + + public static void SubTypeSourceType() { + System.out.println("Behavior method called"); + } + + public static void SubTypePowerType() { + System.out.println("Behavior method called"); + } + + public static void SubTypeSkill() { + System.out.println("Behavior method called"); + } + + public static void FPSubTypeDmg() { + System.out.println("Behavior method called"); + } + + public static void DD() { + System.out.println("Behavior method called"); + } + + public static void StringBehaviour() { + System.out.println("Behavior method called"); + } + + public static void SubTypeMod() { + System.out.println("Behavior method called"); + } + + public static void SubTypePower() { + System.out.println("Behavior method called"); + } + + public static void SubTypeDmg() { + System.out.println("Behavior method called"); + } + + public static void FPSubTypeSkill() { + System.out.println("Behavior method called"); + } + + public static void FPSubTypeMonster() { + System.out.println("Behavior method called"); + } + + public static void ProcInfo() { + System.out.println("Behavior method called"); + } +}