diff options
author | BoredGuy <osome3717@gmail.com> | 2025-07-29 11:50:57 +0300 |
---|---|---|
committer | BoredGuy <osome3717@gmail.com> | 2025-07-29 11:50:57 +0300 |
commit | 815aec62f8ae3a403e913559d5fe6138c8825007 (patch) | |
tree | 3041d4b8a843c05a4da02e66d5e2f63e1e713b72 /include/background.h | |
parent | 9e1627c229d8d094c7b55751d82db9d3579a16e1 (diff) |
Added background entity and asset system
Diffstat (limited to 'include/background.h')
-rw-r--r-- | include/background.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/background.h b/include/background.h new file mode 100644 index 0000000..104db7c --- /dev/null +++ b/include/background.h @@ -0,0 +1,7 @@ +#pragma once + +#include "game.h" +#include "assets.h" + +void AddBackground(const char* backgroundTexture); +void UpdateBackground(Entity* background, float deltaTime); |