File tree Expand file tree Collapse file tree 7 files changed +1
-2413
lines changed Expand file tree Collapse file tree 7 files changed +1
-2413
lines changed Original file line number Diff line number Diff line change 3939 " include/Mouse.hpp" ,
4040 " include/Music.hpp" ,
4141 " include/physac.hpp" ,
42- " include/Physics.hpp" ,
4342 " include/Ray.hpp" ,
4443 " include/RayCollision.hpp" ,
4544 " include/RaylibException.hpp" ,
Original file line number Diff line number Diff line change 11# Get the sources together
2- set (example_dirs audio core models physics shaders shapes text textures)
2+ set (example_dirs audio core models shaders shapes text textures)
33set (example_sources)
44set (example_resources)
55
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -23,7 +23,6 @@ install(FILES
2323 Mouse.hpp
2424 Music.hpp
2525 physac.hpp
26- Physics.hpp
2726 Ray.hpp
2827 RayCollision.hpp
2928 RaylibException.hpp
Original file line number Diff line number Diff line change @@ -70,7 +70,6 @@ RLCPPAPI inline std::string GetGamepadName(int gamepad) {
7070/* *
7171 * Load text data from file (read)
7272 */
73- [[maybe_unused]]
7473RLCPPAPI std::string LoadFileText (const std::string& fileName) {
7574 char * text = ::LoadFileText (fileName.c_str ());
7675 std::string output (text);
@@ -151,7 +150,6 @@ RLCPPAPI inline std::string GetWorkingDirectory() {
151150/* *
152151 * Get filenames in a directory path
153152 */
154- [[maybe_unused]]
155153RLCPPAPI std::vector<std::string> LoadDirectoryFiles (const std::string& dirPath) {
156154 FilePathList files = ::LoadDirectoryFiles (dirPath.c_str ());
157155 std::vector<std::string> output (files.paths , files.paths + files.count );
@@ -169,7 +167,6 @@ RLCPPAPI inline bool ChangeDirectory(const std::string& dir) {
169167/* *
170168 * Get dropped files names
171169 */
172- [[maybe_unused]]
173170RLCPPAPI std::vector<std::string> LoadDroppedFiles () {
174171 if (!::IsFileDropped ()) {
175172 return std::vector<std::string>();
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments