aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS-TheRevival/Functions/InGame/CodepointSystem.vb
diff options
context:
space:
mode:
Diffstat (limited to 'ShiftOS-TheRevival/Functions/InGame/CodepointSystem.vb')
-rw-r--r--ShiftOS-TheRevival/Functions/InGame/CodepointSystem.vb11
1 files changed, 0 insertions, 11 deletions
diff --git a/ShiftOS-TheRevival/Functions/InGame/CodepointSystem.vb b/ShiftOS-TheRevival/Functions/InGame/CodepointSystem.vb
deleted file mode 100644
index 6a76a28..0000000
--- a/ShiftOS-TheRevival/Functions/InGame/CodepointSystem.vb
+++ /dev/null
@@ -1,11 +0,0 @@
-Module CodepointSystem
- Public Sub ChangeCP(Addition As Boolean, NeededCP As Integer)
- Dim TempCP As Integer = Convert.ToInt32(Strings.ComputerInfo(2))
- If Addition = True Then
- TempCP = TempCP + NeededCP
- Else
- TempCP = TempCP - NeededCP
- End If
- Strings.ComputerInfo(2) = Convert.ToString(TempCP)
- End Sub
-End Module