aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS/Helper.vb
diff options
context:
space:
mode:
authorpfg github <[email protected]>2015-03-08 09:18:40 -0700
committerpfg github <[email protected]>2015-03-08 09:18:40 -0700
commita3db778746af40eb9f9ec2cccfb3c935164600f5 (patch)
tree6fd5220c1283aeb448d4b67c8c122f78d2a7a8dc /ShiftOS/Helper.vb
parentbfd7c782b02bce11bb07cc228e5d0775ad0d98d5 (diff)
downloadshiftos-a3db778746af40eb9f9ec2cccfb3c935164600f5.tar.gz
shiftos-a3db778746af40eb9f9ec2cccfb3c935164600f5.tar.bz2
shiftos-a3db778746af40eb9f9ec2cccfb3c935164600f5.zip
Full Source
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