Player texture

This commit is contained in:
2023-04-05 22:21:11 -07:00
parent 54d21397e1
commit 469b3f23a8
2 changed files with 3 additions and 1 deletions

View File

@ -25,4 +25,5 @@ tool_prefab(${ROSE_ASSETS_DIR}/prefabs/Crab.xml)
tool_prefab(${ROSE_ASSETS_DIR}/prefabs/SwordHitbox.xml)
tool_prefab(${ROSE_ASSETS_DIR}/prefabs/Wall.xml)
tool_texture(texture_urchin ${ROSE_ASSETS_DIR}/textures/Urchin.png)
tool_texture(texture_urchin ${ROSE_ASSETS_DIR}/textures/Urchin.png)
tool_texture(texture_player ${ROSE_ASSETS_DIR}/textures/Player.png)

View File

@ -51,6 +51,7 @@ namespace Dawn {
auto assMan = &this->game->assetManager;
std::vector<Asset*> assets;
vectorAppend(&assets, Urchin::getRequiredAssets(assMan));
vectorAppend(&assets, Player::getRequiredAssets(assMan));
return assets;
}