shiftos-next/shiftos_next/shiftorium_api.vb
TheUltimateHacker 37c68cce0c Old Save Engine + Shiftorium + Softcoded Paths
More fixes and features...
2015-05-17 13:05:42 -04:00

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