aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS/Helper.vb
diff options
context:
space:
mode:
authorTheUltimateHacker <[email protected]>2015-03-16 11:52:50 -0400
committerTheUltimateHacker <[email protected]>2015-03-16 11:52:50 -0400
commitdbdc3f918399bc25220c93845f16d51933a9a762 (patch)
tree63bbddcc6c012080f02b62fe676c1cfaf3750adf /ShiftOS/Helper.vb
parentafbd2926d0d336cb608d40490c1188baf88d623d (diff)
downloadshiftos-dbdc3f918399bc25220c93845f16d51933a9a762.tar.gz
shiftos-dbdc3f918399bc25220c93845f16d51933a9a762.tar.bz2
shiftos-dbdc3f918399bc25220c93845f16d51933a9a762.zip
#11 - Fixed skinning bug.
Fixed a huge skinning bug, along with adding a few new features (Infobox tries to find a .wav file to play when it starts up. If there isn't any, it doesn't play a sound.)
Diffstat (limited to 'ShiftOS/Helper.vb')
-rw-r--r--ShiftOS/Helper.vb4
1 files changed, 2 insertions, 2 deletions
diff --git a/ShiftOS/Helper.vb b/ShiftOS/Helper.vb
index 29799eb..19a1b2e 100644
--- a/ShiftOS/Helper.vb
+++ b/ShiftOS/Helper.vb
@@ -1,4 +1,4 @@
-Public Class Helper
+Module Helper
Dim path As String = ShiftOSDesktop.ShiftOSPath
Public Sub addCP(points As Integer) 'Add some CP
ShiftOSDesktop.codepoints = ShiftOSDesktop.codepoints + points
@@ -13,4 +13,4 @@
Public Sub playSound(path As String, playMode As AudioPlayMode)
My.Computer.Audio.Play(path, playMode)
End Sub
-End Class
+End Module