2023-09-27 20:41:01 +02:00
|
|
|
#ifndef OPENMW_APPS_OPENMW_MWRENDER_ACTORUTIL_H
|
|
|
|
#define OPENMW_APPS_OPENMW_MWRENDER_ACTORUTIL_H
|
2018-07-17 21:28:05 -05:00
|
|
|
|
|
|
|
#include <string>
|
2024-01-01 13:58:55 +01:00
|
|
|
#include <string_view>
|
2018-07-17 21:28:05 -05:00
|
|
|
|
2023-09-27 20:41:01 +02:00
|
|
|
namespace MWRender
|
2018-07-17 21:28:05 -05:00
|
|
|
{
|
2022-08-28 16:38:11 +02:00
|
|
|
const std::string& getActorSkeleton(bool firstPerson, bool female, bool beast, bool werewolf);
|
2024-01-01 13:58:55 +01:00
|
|
|
bool isDefaultActorSkeleton(std::string_view model);
|
2024-03-25 21:01:46 +00:00
|
|
|
std::string addSuffixBeforeExtension(const std::string& filename, const std::string& suffix);
|
2018-07-17 21:28:05 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|