From e5ecf3e17683b9d307f12e4dbfbf939e7faae11a Mon Sep 17 00:00:00 2001 From: alf9310 Date: Tue, 7 Oct 2025 13:06:43 -0400 Subject: Proposal Template Created --- docs/Proposal.adoc | 21 +++++++++++++++++++++ game/src/main.rs | 2 +- graphics/src/lib.rs | 1 + 3 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 docs/Proposal.adoc diff --git a/docs/Proposal.adoc b/docs/Proposal.adoc new file mode 100644 index 0000000..b1ec2fb --- /dev/null +++ b/docs/Proposal.adoc @@ -0,0 +1,21 @@ += Dungeon Crawler +Freya Murphy +Audrey Fuller +Yusif Elsharawy +Ryan Symons + +:toc: + +== Summary + +== Use Cases + +== Components + +== Testing + +== MVP + +== Stretch Goals + +== Timeline \ No newline at end of file diff --git a/game/src/main.rs b/game/src/main.rs index 355741b..405b19d 100644 --- a/game/src/main.rs +++ b/game/src/main.rs @@ -5,7 +5,7 @@ fn main() { let mut window = Window::new(720, 480, "game"); // Initial game state let dungeon = Dungeon::default(); - + // Main game loop while window.is_open() { // TODO update game state diff --git a/graphics/src/lib.rs b/graphics/src/lib.rs index 4187e6b..982f092 100644 --- a/graphics/src/lib.rs +++ b/graphics/src/lib.rs @@ -5,6 +5,7 @@ pub struct Window { handle: RaylibHandle, thread: RaylibThread, } + impl Window { /// Instantiates a new window provided with the default /// window `width`, `height`, and `title`. -- cgit v1.2.3-freya