aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS/Helper.vb
diff options
context:
space:
mode:
Diffstat (limited to 'ShiftOS/Helper.vb')
-rw-r--r--ShiftOS/Helper.vb9
1 files changed, 9 insertions, 0 deletions
diff --git a/ShiftOS/Helper.vb b/ShiftOS/Helper.vb
new file mode 100644
index 0000000..167665c
--- /dev/null
+++ b/ShiftOS/Helper.vb
@@ -0,0 +1,9 @@
+Public Class Helper
+ Dim path As String = ShiftOSDesktop.ShiftOSPath
+ Public Sub addCP(points As Integer) 'Add some CP
+ ShiftOSDesktop.codepoints = ShiftOSDesktop.codepoints + points
+ End Sub
+ Public Sub setCP(points As Integer) 'Set the CP
+ ShiftOSDesktop.codepoints = points
+ End Sub
+End Class