summaryrefslogtreecommitdiff
path: root/engine/src/windowing
AgeCommit message (Collapse)Author
9 hoursstyle: format for Rust edition 2021HEADmasterHampusM
9 hoursrefactor(engine): use Rust edition 2021HampusM
This change is because of a rustfmt bug in the 2024 edition. For example, the following code snippet: ``` struct Value {} struct ParsingError {} trait Keyword {} impl Value { fn parse<KeywordT: Keyword>(value: &str, line_no: usize) -> Result<Self, ParsingError> { todo!(); } } ``` when formatted with `rustfmt --edition 2021 --emit stdout --config max_width=90,brace_style=AlwaysNextLine` becomes: ``` struct Value {} struct ParsingError {} trait Keyword {} impl Value { fn parse<KeywordT: Keyword>(value: &str, line_no: usize) -> Result<Self, ParsingError> { todo!(); } } ```
2 dayschore: rename ecs* crates to engine-ecs*HampusM
2026-04-05feat(engine): add windowing::mouse::Buttons::all_current fnHampusM
2026-04-05feat(engine): add position to mouse componentHampusM
2025-11-06feat(engine): add scale factor to Window structHampusM
2025-11-02feat(engine): add & use Keyboard struct QOL fnsHampusM
2025-10-18refactor(engine): use winit instead of glfwHampusM