├── .github ├── FUNDING.yml └── workflows │ └── check.yml ├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── Cargo.toml ├── FallrimPriority.ini ├── README.md ├── pack.py ├── src ├── affinity_helper.rs ├── dynamic_priority.rs ├── games.rs ├── games │ ├── common.rs │ ├── fallout4.rs │ └── skyrim_ae.rs └── lib.rs └── tests └── affinity_helper_test.rs /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyrest/FallrimPriority/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyrest/FallrimPriority/HEAD/.github/workflows/check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /Cargo.lock 3 | /tmp 4 | /out -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyrest/FallrimPriority/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyrest/FallrimPriority/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyrest/FallrimPriority/HEAD/Cargo.toml -------------------------------------------------------------------------------- /FallrimPriority.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyrest/FallrimPriority/HEAD/FallrimPriority.ini -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyrest/FallrimPriority/HEAD/README.md -------------------------------------------------------------------------------- /pack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyrest/FallrimPriority/HEAD/pack.py -------------------------------------------------------------------------------- /src/affinity_helper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyrest/FallrimPriority/HEAD/src/affinity_helper.rs -------------------------------------------------------------------------------- /src/dynamic_priority.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyrest/FallrimPriority/HEAD/src/dynamic_priority.rs -------------------------------------------------------------------------------- /src/games.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyrest/FallrimPriority/HEAD/src/games.rs -------------------------------------------------------------------------------- /src/games/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyrest/FallrimPriority/HEAD/src/games/common.rs -------------------------------------------------------------------------------- /src/games/fallout4.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyrest/FallrimPriority/HEAD/src/games/fallout4.rs -------------------------------------------------------------------------------- /src/games/skyrim_ae.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyrest/FallrimPriority/HEAD/src/games/skyrim_ae.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyrest/FallrimPriority/HEAD/src/lib.rs -------------------------------------------------------------------------------- /tests/affinity_helper_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nyrest/FallrimPriority/HEAD/tests/affinity_helper_test.rs --------------------------------------------------------------------------------