├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ └── test.yml ├── .gitignore ├── .gitmodules ├── .vscode ├── soul.code-snippets └── tasks.json ├── LICENSE ├── README.md ├── include └── VA.soul ├── logo.png ├── scripts ├── test.ps1 ├── test.sh ├── updateSub.ps1 └── updateSub.sh └── tests ├── README.md ├── effect.soul ├── effect.soulpatch ├── errors.soul └── errors.soulpatch /.gitattributes: -------------------------------------------------------------------------------- 1 | * linguist-vendored=true -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thezhe/SOUL-VA/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thezhe/SOUL-VA/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thezhe/SOUL-VA/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thezhe/SOUL-VA/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thezhe/SOUL-VA/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/soul.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thezhe/SOUL-VA/HEAD/.vscode/soul.code-snippets -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thezhe/SOUL-VA/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thezhe/SOUL-VA/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thezhe/SOUL-VA/HEAD/README.md -------------------------------------------------------------------------------- /include/VA.soul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thezhe/SOUL-VA/HEAD/include/VA.soul -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thezhe/SOUL-VA/HEAD/logo.png -------------------------------------------------------------------------------- /scripts/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thezhe/SOUL-VA/HEAD/scripts/test.ps1 -------------------------------------------------------------------------------- /scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thezhe/SOUL-VA/HEAD/scripts/test.sh -------------------------------------------------------------------------------- /scripts/updateSub.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thezhe/SOUL-VA/HEAD/scripts/updateSub.ps1 -------------------------------------------------------------------------------- /scripts/updateSub.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thezhe/SOUL-VA/HEAD/scripts/updateSub.sh -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thezhe/SOUL-VA/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/effect.soul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thezhe/SOUL-VA/HEAD/tests/effect.soul -------------------------------------------------------------------------------- /tests/effect.soulpatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thezhe/SOUL-VA/HEAD/tests/effect.soulpatch -------------------------------------------------------------------------------- /tests/errors.soul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thezhe/SOUL-VA/HEAD/tests/errors.soul -------------------------------------------------------------------------------- /tests/errors.soulpatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thezhe/SOUL-VA/HEAD/tests/errors.soulpatch --------------------------------------------------------------------------------