summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2022-04-18 11:05:24 +0200
committerAki <please@ignore.pl>2022-04-18 11:05:24 +0200
commit2773854a3e749512826fa8b71b77e754be79836f (patch)
treedf3771aae7025eae7505c53eebb36d5b3ff56f01
parentf0891205710c2d5c9b78a9d275de88a77c2ccda3 (diff)
downloadbullethell2022-2773854a3e749512826fa8b71b77e754be79836f.zip
bullethell2022-2773854a3e749512826fa8b71b77e754be79836f.tar.gz
bullethell2022-2773854a3e749512826fa8b71b77e754be79836f.tar.bz2
Renamed bullets header to simply ConstantVelocity
-rw-r--r--CMakeLists.txt2
-rw-r--r--ConstantVelocity.cpp (renamed from Bullets.cpp)2
-rw-r--r--ConstantVelocity.h (renamed from Bullets.h)0
-rw-r--r--ExampleGenerator.cpp2
-rw-r--r--ExampleGenerator.h2
-rw-r--r--GameScreen.h2
6 files changed, 5 insertions, 5 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 8867e78..32c3787 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -11,7 +11,7 @@ endif()
find_package(raylib 3 REQUIRED)
add_executable(
${PROJECT_NAME}
- Bullets.cpp
+ ConstantVelocity.cpp
ExampleGenerator.cpp
Game.cpp
GameScreen.cpp
diff --git a/Bullets.cpp b/ConstantVelocity.cpp
index 62b6ea3..37f3c3d 100644
--- a/Bullets.cpp
+++ b/ConstantVelocity.cpp
@@ -1,4 +1,4 @@
-#include "Bullets.h"
+#include "ConstantVelocity.h"
#include <raylib.h>
diff --git a/Bullets.h b/ConstantVelocity.h
index 3970aff..3970aff 100644
--- a/Bullets.h
+++ b/ConstantVelocity.h
diff --git a/ExampleGenerator.cpp b/ExampleGenerator.cpp
index bcead95..3e1598b 100644
--- a/ExampleGenerator.cpp
+++ b/ExampleGenerator.cpp
@@ -5,7 +5,7 @@
#include <raylib.h>
-#include "Bullets.h"
+#include "ConstantVelocity.h"
ExampleGenerator::ExampleGenerator(ConstantVelocityBullet::Vector& bullets) :
diff --git a/ExampleGenerator.h b/ExampleGenerator.h
index 25c4ce3..16c9fc2 100644
--- a/ExampleGenerator.h
+++ b/ExampleGenerator.h
@@ -2,7 +2,7 @@
#include <raylib.h>
-#include "Bullets.h"
+#include "ConstantVelocity.h"
#include "Generator.h"
diff --git a/GameScreen.h b/GameScreen.h
index 144bd82..11d5b73 100644
--- a/GameScreen.h
+++ b/GameScreen.h
@@ -2,7 +2,7 @@
#include <raylib.h>
-#include "Bullets.h"
+#include "ConstantVelocity.h"
#include "ExampleGenerator.h"
#include "Player.h"
#include "Screen.h"