diff options
Diffstat (limited to 'shiftos_next/shiftorium_api.vb')
| -rw-r--r-- | shiftos_next/shiftorium_api.vb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/shiftos_next/shiftorium_api.vb b/shiftos_next/shiftorium_api.vb new file mode 100644 index 0000000..3920e0d --- /dev/null +++ b/shiftos_next/shiftorium_api.vb @@ -0,0 +1,15 @@ +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 |
