13 lines
278 B
C++
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
|