From b534fed719260edf0d7a9838525a1d052455177d Mon Sep 17 00:00:00 2001 From: Collin Smith Date: Mon, 6 Jan 2020 14:09:31 -0800 Subject: [PATCH] Created engine consts for acts and diffs --- core/src/com/riiablo/engine/Engine.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/src/com/riiablo/engine/Engine.java b/core/src/com/riiablo/engine/Engine.java index 6d8f5c9f..cae3b13f 100644 --- a/core/src/com/riiablo/engine/Engine.java +++ b/core/src/com/riiablo/engine/Engine.java @@ -116,6 +116,8 @@ public class Engine { //public static final byte MODE_GH = 19; } + public static final int MAX_DIFFS = 3; + public static final int MAX_ACTS = 5; public static final int MAX_PLAYERS = 8; public static final int MAX_NAME_LENGTH = 15; }