summaryrefslogtreecommitdiffhomepage
path: root/src/resources.hpp
diff options
context:
space:
mode:
authorrealtradam <[email protected]>2022-11-04 19:58:52 -0400
committerrealtradam <[email protected]>2022-11-04 19:58:52 -0400
commitf32e06ab49889b50bba195729af19d3bc878f976 (patch)
tree975df20f86f9405e4321dc14265c145b9e876a3e /src/resources.hpp
parent4c5b6f580133f9e9c02b5cb2243b43ff15b20304 (diff)
downloadorbital_game-f32e06ab49889b50bba195729af19d3bc878f976.tar.gz
orbital_game-f32e06ab49889b50bba195729af19d3bc878f976.zip
added renderer system
Diffstat (limited to 'src/resources.hpp')
-rw-r--r--src/resources.hpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/resources.hpp b/src/resources.hpp
new file mode 100644
index 0000000..d45a7d5
--- /dev/null
+++ b/src/resources.hpp
@@ -0,0 +1,8 @@
+#pragma once
+#include <unordered_map>
+#include <string>
+#include "raylib.h"
+
+namespace Resources {
+ Texture useTexture(std::string id);
+}