diff options
| -rw-r--r-- | docs/Proposal.adoc | 21 | ||||
| -rw-r--r-- | game/src/main.rs | 2 | ||||
| -rw-r--r-- | graphics/src/lib.rs | 1 |
3 files changed, 23 insertions, 1 deletions
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 <tam2214@rit.edu>
+Audrey Fuller <alf9310@rit.edu>
+Yusif Elsharawy <yse2561@rit.edu>
+Ryan Symons <ras1178@rit.edu>
+
+: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`. |