devilutionX/Source/engine/load_cel.hpp
2021-06-21 01:36:20 -07:00

13 lines
278 B
C++

#pragma once
#include "engine/cel_sprite.hpp"
namespace devilution {
/**
* @brief Loads a Cel sprite and sets its width
*/
CelSprite LoadCel(const char *pszName, int width);
CelSprite LoadCel(const char *pszName, const int *widths);
} // namespace devilution