mirror of
https://github.com/TheUltimateHacker/shiftos-next.git
synced 2025-01-23 00:42:14 +00:00
16 lines
317 B
VB.net
16 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
|