summaryrefslogtreecommitdiff
path: root/Thronefall_1_57/Decompile/I2.Loc/GlobalParametersExample.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Thronefall_1_57/Decompile/I2.Loc/GlobalParametersExample.cs')
-rw-r--r--Thronefall_1_57/Decompile/I2.Loc/GlobalParametersExample.cs17
1 files changed, 0 insertions, 17 deletions
diff --git a/Thronefall_1_57/Decompile/I2.Loc/GlobalParametersExample.cs b/Thronefall_1_57/Decompile/I2.Loc/GlobalParametersExample.cs
deleted file mode 100644
index 5b5a66c..0000000
--- a/Thronefall_1_57/Decompile/I2.Loc/GlobalParametersExample.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-namespace I2.Loc;
-
-public class GlobalParametersExample : RegisterGlobalParameters
-{
- public override string GetParameterValue(string ParamName)
- {
- if (ParamName == "WINNER")
- {
- return "Javier";
- }
- if (ParamName == "NUM PLAYERS")
- {
- return 5.ToString();
- }
- return null;
- }
-}