├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── branding └── gamestat_logo.png ├── examples ├── clean_code.rs ├── daggers.rs └── simple.rs ├── src ├── lib.rs ├── modifier.rs └── stat.rs └── tests └── tests.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /.vscode 3 | Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanTanDev/game_stat/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanTanDev/game_stat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanTanDev/game_stat/HEAD/README.md -------------------------------------------------------------------------------- /branding/gamestat_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanTanDev/game_stat/HEAD/branding/gamestat_logo.png -------------------------------------------------------------------------------- /examples/clean_code.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanTanDev/game_stat/HEAD/examples/clean_code.rs -------------------------------------------------------------------------------- /examples/daggers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanTanDev/game_stat/HEAD/examples/daggers.rs -------------------------------------------------------------------------------- /examples/simple.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanTanDev/game_stat/HEAD/examples/simple.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanTanDev/game_stat/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/modifier.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanTanDev/game_stat/HEAD/src/modifier.rs -------------------------------------------------------------------------------- /src/stat.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanTanDev/game_stat/HEAD/src/stat.rs -------------------------------------------------------------------------------- /tests/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TanTanDev/game_stat/HEAD/tests/tests.rs --------------------------------------------------------------------------------