blob: 167665cf9f1f24172264de963a8eb51326c6b92e (
plain) (
blame)
1
2
3
4
5
6
7
8
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
|