summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralf9310 <alf9310@rit.edu>2025-10-07 13:06:43 -0400
committerFreya Murphy <freya@freyacat.org>2025-10-08 19:37:16 -0400
commite5ecf3e17683b9d307f12e4dbfbf939e7faae11a (patch)
tree9f1a5f8e455a76b06196bb96191536f60fa90e21
parentStubbed out some draw functions (diff)
downloadDungeonCrawl-e5ecf3e17683b9d307f12e4dbfbf939e7faae11a.tar.gz
DungeonCrawl-e5ecf3e17683b9d307f12e4dbfbf939e7faae11a.tar.bz2
DungeonCrawl-e5ecf3e17683b9d307f12e4dbfbf939e7faae11a.zip
Proposal Template Created
-rw-r--r--docs/Proposal.adoc21
-rw-r--r--game/src/main.rs2
-rw-r--r--graphics/src/lib.rs1
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`.