diff options
Diffstat (limited to 'ShiftOS-TheRevival/MainForms/Strings.vb')
| -rw-r--r-- | ShiftOS-TheRevival/MainForms/Strings.vb | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/ShiftOS-TheRevival/MainForms/Strings.vb b/ShiftOS-TheRevival/MainForms/Strings.vb new file mode 100644 index 0000000..15303d2 --- /dev/null +++ b/ShiftOS-TheRevival/MainForms/Strings.vb @@ -0,0 +1,35 @@ +Public Class Strings + Public Shared OSInfo() As String + Public Shared ComputerInfo() As String + Public Shared GameState() As String + Public Shared OnceInfo() As String + + 'STRING CATEGORIZATION WRITING RULES! + 'THIS IS IN ORDER TO REMAIN COMPATIBLE WITH OLDER VERSIONS! + ' + 'General string : + '(Row Number) = Function/Subject (default value : default) + ' + 'Each have to placed in numerical order + 'If there's moved strings for newer version, example: + '0 = Computer Name (0.1) => OS Version (0.2) => Root Location (0.3), etc. + 'If there's removed strings for newer version, example: + '69 = Secret Easter Egg (removed in 0.420) + 'If there's repurposed strings for newer version after removed, example: + '5 = FreeRoam enabled? (removed in 0.4) => Story Mode State + ' + 'ALWAYS WRITE THE NOTES IN COMMENTS, THIS CLASS ONLY IS FOR STORING STRINGS AND DEPLOYING STRINGS TO DISK + + 'OSInfo Strings: + '0 = OSVersion (default : dependant) + ' + 'OnceInfo Strings: + '0 = IsRoot? (default : 0) + ' + 'ComputerInfo Strings: + '0 = Computer Name (default : shiftos) + '1 = Username (default : user) + ' + 'GameState Strings: + '0 = Playing Mode (default : Story) +End Class |
