├── Elephant.yyp ├── LICENSE ├── README.md ├── datafiles └── elephant_license.txt ├── notes └── __ElephantDocumentation │ ├── __ElephantDocumentation.txt │ └── __ElephantDocumentation.yy ├── objects ├── oTest │ ├── Create_0.gml │ └── oTest.yy ├── oTestForceVersion │ ├── Create_0.gml │ ├── oTestForceVersion.yy │ └── oTestVerboseExclude.yy ├── oTestLoop │ ├── Create_0.gml │ ├── oTest.yy │ └── oTestLoop.yy ├── oTestVerboseExclude │ ├── Create_0.gml │ └── oTestVerboseExclude.yy └── oTestVersionedVerbose │ ├── Create_0.gml │ ├── oTestForceVersion.yy │ ├── oTestVerboseExclude.yy │ └── oTestVersionedVerbose.yy ├── options ├── amazonfire │ └── options_amazonfire.yy ├── android │ └── options_android.yy ├── html5 │ └── options_html5.yy ├── ios │ └── options_ios.yy ├── linux │ └── options_linux.yy ├── mac │ └── options_mac.yy ├── main │ └── options_main.yy ├── operagx │ └── options_operagx.yy ├── ps4 │ └── options_ps4.yy ├── switch │ └── options_switch.yy ├── tvos │ └── options_tvos.yy ├── windows │ └── options_windows.yy ├── windowsuap │ └── options_windowsuap.yy └── xboxone │ └── options_xboxone.yy ├── rooms └── rmMain │ └── rmMain.yy └── scripts ├── ElephantDuplicate ├── ElephantDuplicate.gml └── ElephantDuplicate.yy ├── ElephantExportString ├── ElephantExportString.gml └── ElephantExportString.yy ├── ElephantFromJSON ├── ElephantFromJSON.gml └── ElephantFromJSON.yy ├── ElephantImportString ├── ElephantImportString.gml └── ElephantImportString.yy ├── ElephantRead ├── ElephantRead.gml └── ElephantRead.yy ├── ElephantToJSON ├── ElephantToJSON.gml └── ElephantToJSON.yy ├── ElephantWrite ├── ElephantWrite.gml └── ElephantWrite.yy ├── TestConstructor ├── TestConstructor.gml └── TestConstructor.yy ├── TestForceVersion ├── TestConstructor.yy ├── TestForceVersion.gml ├── TestForceVersion.yy └── TestVerboseExclude.yy ├── TestLoop ├── TestLoop.gml └── TestLoop.yy ├── TestVerboseExclude ├── TestConstructor.yy ├── TestVerboseExclude.gml └── TestVerboseExclude.yy ├── TestVersionedVerbose ├── TestConstructor.yy ├── TestForceVersion.yy ├── TestVerboseExclude.yy ├── TestVersionedVerbose.gml └── TestVersionedVerbose.yy ├── __ElephantConfig ├── __ElephantConfig.gml └── __ElephantConfig.yy ├── __ElephantConstants ├── __ElephantConstants.gml └── __ElephantConstants.yy ├── __ElephantConstructorFindLatestVersion ├── __ElephantConstructorFindLatestVersion.gml └── __ElephantConstructorFindLatestVersion.yy ├── __ElephantError ├── __ElephantError.gml └── __ElephantError.yy ├── __ElephantReadInner_v1 ├── __ElephantReadInner_v1.gml └── __ElephantReadInner_v1.yy ├── __ElephantReadInner_v2 ├── __ElephantReadInner_v2.gml └── __ElephantReadInner_v2.yy ├── __ElephantReadInner_v3 ├── __ElephantReadInner_v2.yy ├── __ElephantReadInner_v3.gml └── __ElephantReadInner_v3.yy ├── __ElephantReadInner_v4 ├── __ElephantReadInner_v4.gml └── __ElephantReadInner_v4.yy ├── __ElephantReadInner_v5 ├── __ElephantReadInner_v5.gml └── __ElephantReadInner_v5.yy ├── __ElephantRemoveExcludedVariables ├── __ElephantRemoveExcludedVariables.gml └── __ElephantRemoveExcludedVariables.yy ├── __ElephantSystem ├── __ElephantSystem.gml └── __ElephantSystem.yy ├── __ElephantTrace ├── __ElephantTrace.gml └── __ElephantTrace.yy └── __ElephantValueToDatatype ├── __ElephantValueToDatatype.gml └── __ElephantValueToDatatype.yy /Elephant.yyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/Elephant.yyp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/README.md -------------------------------------------------------------------------------- /datafiles/elephant_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/datafiles/elephant_license.txt -------------------------------------------------------------------------------- /notes/__ElephantDocumentation/__ElephantDocumentation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/notes/__ElephantDocumentation/__ElephantDocumentation.txt -------------------------------------------------------------------------------- /notes/__ElephantDocumentation/__ElephantDocumentation.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/notes/__ElephantDocumentation/__ElephantDocumentation.yy -------------------------------------------------------------------------------- /objects/oTest/Create_0.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/objects/oTest/Create_0.gml -------------------------------------------------------------------------------- /objects/oTest/oTest.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/objects/oTest/oTest.yy -------------------------------------------------------------------------------- /objects/oTestForceVersion/Create_0.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/objects/oTestForceVersion/Create_0.gml -------------------------------------------------------------------------------- /objects/oTestForceVersion/oTestForceVersion.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/objects/oTestForceVersion/oTestForceVersion.yy -------------------------------------------------------------------------------- /objects/oTestForceVersion/oTestVerboseExclude.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/objects/oTestForceVersion/oTestVerboseExclude.yy -------------------------------------------------------------------------------- /objects/oTestLoop/Create_0.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/objects/oTestLoop/Create_0.gml -------------------------------------------------------------------------------- /objects/oTestLoop/oTest.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/objects/oTestLoop/oTest.yy -------------------------------------------------------------------------------- /objects/oTestLoop/oTestLoop.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/objects/oTestLoop/oTestLoop.yy -------------------------------------------------------------------------------- /objects/oTestVerboseExclude/Create_0.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/objects/oTestVerboseExclude/Create_0.gml -------------------------------------------------------------------------------- /objects/oTestVerboseExclude/oTestVerboseExclude.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/objects/oTestVerboseExclude/oTestVerboseExclude.yy -------------------------------------------------------------------------------- /objects/oTestVersionedVerbose/Create_0.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/objects/oTestVersionedVerbose/Create_0.gml -------------------------------------------------------------------------------- /objects/oTestVersionedVerbose/oTestForceVersion.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/objects/oTestVersionedVerbose/oTestForceVersion.yy -------------------------------------------------------------------------------- /objects/oTestVersionedVerbose/oTestVerboseExclude.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/objects/oTestVersionedVerbose/oTestVerboseExclude.yy -------------------------------------------------------------------------------- /objects/oTestVersionedVerbose/oTestVersionedVerbose.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/objects/oTestVersionedVerbose/oTestVersionedVerbose.yy -------------------------------------------------------------------------------- /options/amazonfire/options_amazonfire.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/options/amazonfire/options_amazonfire.yy -------------------------------------------------------------------------------- /options/android/options_android.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/options/android/options_android.yy -------------------------------------------------------------------------------- /options/html5/options_html5.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/options/html5/options_html5.yy -------------------------------------------------------------------------------- /options/ios/options_ios.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/options/ios/options_ios.yy -------------------------------------------------------------------------------- /options/linux/options_linux.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/options/linux/options_linux.yy -------------------------------------------------------------------------------- /options/mac/options_mac.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/options/mac/options_mac.yy -------------------------------------------------------------------------------- /options/main/options_main.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/options/main/options_main.yy -------------------------------------------------------------------------------- /options/operagx/options_operagx.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/options/operagx/options_operagx.yy -------------------------------------------------------------------------------- /options/ps4/options_ps4.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/options/ps4/options_ps4.yy -------------------------------------------------------------------------------- /options/switch/options_switch.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/options/switch/options_switch.yy -------------------------------------------------------------------------------- /options/tvos/options_tvos.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/options/tvos/options_tvos.yy -------------------------------------------------------------------------------- /options/windows/options_windows.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/options/windows/options_windows.yy -------------------------------------------------------------------------------- /options/windowsuap/options_windowsuap.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/options/windowsuap/options_windowsuap.yy -------------------------------------------------------------------------------- /options/xboxone/options_xboxone.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/options/xboxone/options_xboxone.yy -------------------------------------------------------------------------------- /rooms/rmMain/rmMain.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/rooms/rmMain/rmMain.yy -------------------------------------------------------------------------------- /scripts/ElephantDuplicate/ElephantDuplicate.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/ElephantDuplicate/ElephantDuplicate.gml -------------------------------------------------------------------------------- /scripts/ElephantDuplicate/ElephantDuplicate.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/ElephantDuplicate/ElephantDuplicate.yy -------------------------------------------------------------------------------- /scripts/ElephantExportString/ElephantExportString.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/ElephantExportString/ElephantExportString.gml -------------------------------------------------------------------------------- /scripts/ElephantExportString/ElephantExportString.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/ElephantExportString/ElephantExportString.yy -------------------------------------------------------------------------------- /scripts/ElephantFromJSON/ElephantFromJSON.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/ElephantFromJSON/ElephantFromJSON.gml -------------------------------------------------------------------------------- /scripts/ElephantFromJSON/ElephantFromJSON.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/ElephantFromJSON/ElephantFromJSON.yy -------------------------------------------------------------------------------- /scripts/ElephantImportString/ElephantImportString.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/ElephantImportString/ElephantImportString.gml -------------------------------------------------------------------------------- /scripts/ElephantImportString/ElephantImportString.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/ElephantImportString/ElephantImportString.yy -------------------------------------------------------------------------------- /scripts/ElephantRead/ElephantRead.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/ElephantRead/ElephantRead.gml -------------------------------------------------------------------------------- /scripts/ElephantRead/ElephantRead.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/ElephantRead/ElephantRead.yy -------------------------------------------------------------------------------- /scripts/ElephantToJSON/ElephantToJSON.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/ElephantToJSON/ElephantToJSON.gml -------------------------------------------------------------------------------- /scripts/ElephantToJSON/ElephantToJSON.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/ElephantToJSON/ElephantToJSON.yy -------------------------------------------------------------------------------- /scripts/ElephantWrite/ElephantWrite.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/ElephantWrite/ElephantWrite.gml -------------------------------------------------------------------------------- /scripts/ElephantWrite/ElephantWrite.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/ElephantWrite/ElephantWrite.yy -------------------------------------------------------------------------------- /scripts/TestConstructor/TestConstructor.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/TestConstructor/TestConstructor.gml -------------------------------------------------------------------------------- /scripts/TestConstructor/TestConstructor.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/TestConstructor/TestConstructor.yy -------------------------------------------------------------------------------- /scripts/TestForceVersion/TestConstructor.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/TestForceVersion/TestConstructor.yy -------------------------------------------------------------------------------- /scripts/TestForceVersion/TestForceVersion.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/TestForceVersion/TestForceVersion.gml -------------------------------------------------------------------------------- /scripts/TestForceVersion/TestForceVersion.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/TestForceVersion/TestForceVersion.yy -------------------------------------------------------------------------------- /scripts/TestForceVersion/TestVerboseExclude.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/TestForceVersion/TestVerboseExclude.yy -------------------------------------------------------------------------------- /scripts/TestLoop/TestLoop.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/TestLoop/TestLoop.gml -------------------------------------------------------------------------------- /scripts/TestLoop/TestLoop.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/TestLoop/TestLoop.yy -------------------------------------------------------------------------------- /scripts/TestVerboseExclude/TestConstructor.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/TestVerboseExclude/TestConstructor.yy -------------------------------------------------------------------------------- /scripts/TestVerboseExclude/TestVerboseExclude.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/TestVerboseExclude/TestVerboseExclude.gml -------------------------------------------------------------------------------- /scripts/TestVerboseExclude/TestVerboseExclude.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/TestVerboseExclude/TestVerboseExclude.yy -------------------------------------------------------------------------------- /scripts/TestVersionedVerbose/TestConstructor.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/TestVersionedVerbose/TestConstructor.yy -------------------------------------------------------------------------------- /scripts/TestVersionedVerbose/TestForceVersion.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/TestVersionedVerbose/TestForceVersion.yy -------------------------------------------------------------------------------- /scripts/TestVersionedVerbose/TestVerboseExclude.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/TestVersionedVerbose/TestVerboseExclude.yy -------------------------------------------------------------------------------- /scripts/TestVersionedVerbose/TestVersionedVerbose.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/TestVersionedVerbose/TestVersionedVerbose.gml -------------------------------------------------------------------------------- /scripts/TestVersionedVerbose/TestVersionedVerbose.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/TestVersionedVerbose/TestVersionedVerbose.yy -------------------------------------------------------------------------------- /scripts/__ElephantConfig/__ElephantConfig.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/__ElephantConfig/__ElephantConfig.gml -------------------------------------------------------------------------------- /scripts/__ElephantConfig/__ElephantConfig.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/__ElephantConfig/__ElephantConfig.yy -------------------------------------------------------------------------------- /scripts/__ElephantConstants/__ElephantConstants.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/__ElephantConstants/__ElephantConstants.gml -------------------------------------------------------------------------------- /scripts/__ElephantConstants/__ElephantConstants.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/__ElephantConstants/__ElephantConstants.yy -------------------------------------------------------------------------------- /scripts/__ElephantConstructorFindLatestVersion/__ElephantConstructorFindLatestVersion.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/__ElephantConstructorFindLatestVersion/__ElephantConstructorFindLatestVersion.gml -------------------------------------------------------------------------------- /scripts/__ElephantConstructorFindLatestVersion/__ElephantConstructorFindLatestVersion.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/__ElephantConstructorFindLatestVersion/__ElephantConstructorFindLatestVersion.yy -------------------------------------------------------------------------------- /scripts/__ElephantError/__ElephantError.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/__ElephantError/__ElephantError.gml -------------------------------------------------------------------------------- /scripts/__ElephantError/__ElephantError.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/__ElephantError/__ElephantError.yy -------------------------------------------------------------------------------- /scripts/__ElephantReadInner_v1/__ElephantReadInner_v1.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/__ElephantReadInner_v1/__ElephantReadInner_v1.gml -------------------------------------------------------------------------------- /scripts/__ElephantReadInner_v1/__ElephantReadInner_v1.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/__ElephantReadInner_v1/__ElephantReadInner_v1.yy -------------------------------------------------------------------------------- /scripts/__ElephantReadInner_v2/__ElephantReadInner_v2.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/__ElephantReadInner_v2/__ElephantReadInner_v2.gml -------------------------------------------------------------------------------- /scripts/__ElephantReadInner_v2/__ElephantReadInner_v2.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/__ElephantReadInner_v2/__ElephantReadInner_v2.yy -------------------------------------------------------------------------------- /scripts/__ElephantReadInner_v3/__ElephantReadInner_v2.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/__ElephantReadInner_v3/__ElephantReadInner_v2.yy -------------------------------------------------------------------------------- /scripts/__ElephantReadInner_v3/__ElephantReadInner_v3.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/__ElephantReadInner_v3/__ElephantReadInner_v3.gml -------------------------------------------------------------------------------- /scripts/__ElephantReadInner_v3/__ElephantReadInner_v3.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/__ElephantReadInner_v3/__ElephantReadInner_v3.yy -------------------------------------------------------------------------------- /scripts/__ElephantReadInner_v4/__ElephantReadInner_v4.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/__ElephantReadInner_v4/__ElephantReadInner_v4.gml -------------------------------------------------------------------------------- /scripts/__ElephantReadInner_v4/__ElephantReadInner_v4.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/__ElephantReadInner_v4/__ElephantReadInner_v4.yy -------------------------------------------------------------------------------- /scripts/__ElephantReadInner_v5/__ElephantReadInner_v5.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/__ElephantReadInner_v5/__ElephantReadInner_v5.gml -------------------------------------------------------------------------------- /scripts/__ElephantReadInner_v5/__ElephantReadInner_v5.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/__ElephantReadInner_v5/__ElephantReadInner_v5.yy -------------------------------------------------------------------------------- /scripts/__ElephantRemoveExcludedVariables/__ElephantRemoveExcludedVariables.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/__ElephantRemoveExcludedVariables/__ElephantRemoveExcludedVariables.gml -------------------------------------------------------------------------------- /scripts/__ElephantRemoveExcludedVariables/__ElephantRemoveExcludedVariables.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/__ElephantRemoveExcludedVariables/__ElephantRemoveExcludedVariables.yy -------------------------------------------------------------------------------- /scripts/__ElephantSystem/__ElephantSystem.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/__ElephantSystem/__ElephantSystem.gml -------------------------------------------------------------------------------- /scripts/__ElephantSystem/__ElephantSystem.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/__ElephantSystem/__ElephantSystem.yy -------------------------------------------------------------------------------- /scripts/__ElephantTrace/__ElephantTrace.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/__ElephantTrace/__ElephantTrace.gml -------------------------------------------------------------------------------- /scripts/__ElephantTrace/__ElephantTrace.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/__ElephantTrace/__ElephantTrace.yy -------------------------------------------------------------------------------- /scripts/__ElephantValueToDatatype/__ElephantValueToDatatype.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/__ElephantValueToDatatype/__ElephantValueToDatatype.gml -------------------------------------------------------------------------------- /scripts/__ElephantValueToDatatype/__ElephantValueToDatatype.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JujuAdams/Elephant/HEAD/scripts/__ElephantValueToDatatype/__ElephantValueToDatatype.yy --------------------------------------------------------------------------------