From 37c68cce0cfd00b0982449735db35385a7e74044 Mon Sep 17 00:00:00 2001 From: TheUltimateHacker Date: Sun, 17 May 2015 13:05:42 -0400 Subject: Old Save Engine + Shiftorium + Softcoded Paths More fixes and features... --- shiftos_next/shiftorium_api.vb | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 shiftos_next/shiftorium_api.vb (limited to 'shiftos_next/shiftorium_api.vb') 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 -- cgit v1.2.3