mirror of
https://github.com/TheUltimateHacker/shiftos-next.git
synced 2025-01-22 09:02:00 -05:00
37c68cce0c
More fixes and features...
15 lines
317 B
VB.net
15 lines
317 B
VB.net
Module shiftorium_api
|
|
'API for Shiftorium Applications.
|
|
|
|
Public codepoints As Integer
|
|
|
|
Public Sub DeductCP(ammount As Integer)
|
|
codepoints -= ammount
|
|
savegame()
|
|
End Sub
|
|
|
|
Public Sub AddCP(ammount As Integer)
|
|
codepoints += ammount
|
|
savegame()
|
|
End Sub
|
|
End Module
|