From daa61a51eb97f868a56a52fc61b560832dde353b Mon Sep 17 00:00:00 2001 From: Raymond Hogenson Date: Sat, 18 Aug 2018 00:25:29 -0400 Subject: Write a working bullet hell I just fucked up the enemy movement, but hopefully I won't ever need that old code. The new one is going to look really cool and sweet. Anything with just modifying acceleration must look very cool and smooth. --- src/constants.rs | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 src/constants.rs (limited to 'src/constants.rs') diff --git a/src/constants.rs b/src/constants.rs new file mode 100644 index 0000000..3868ce3 --- /dev/null +++ b/src/constants.rs @@ -0,0 +1,2 @@ +pub const X_DIM: u32 = 800; +pub const Y_DIM: u32 = 600; -- cgit v1.3.1