|
Air-Trap 1.0.0
A multiplayer R-Type clone game engine built with C++23 and ECS architecture
|
Information about an entity's sprite for the mod menu. More...
#include <ModMenuScene.hpp>
Public Attributes | |
| std::string | name |
| Display name of the entity. | |
| std::string | texturePath |
| Path to the texture. | |
| int | rectLeft |
| Left position in sprite sheet. | |
| int | rectTop |
| Top position in sprite sheet. | |
| int | rectWidth |
| Width of the sprite. | |
| int | rectHeight |
| Height of the sprite. | |
Information about an entity's sprite for the mod menu.
Definition at line 30 of file ModMenuScene.hpp.
| std::string rtp::client::scenes::EntitySpriteInfo::name |
Display name of the entity.
Definition at line 31 of file ModMenuScene.hpp.
Referenced by rtp::client::scenes::ModMenuScene::getEntityKey().
| int rtp::client::scenes::EntitySpriteInfo::rectHeight |
Height of the sprite.
Definition at line 36 of file ModMenuScene.hpp.
Referenced by rtp::client::scenes::ModMenuScene::applyCustomSprite().
| int rtp::client::scenes::EntitySpriteInfo::rectLeft |
Left position in sprite sheet.
Definition at line 33 of file ModMenuScene.hpp.
| int rtp::client::scenes::EntitySpriteInfo::rectTop |
Top position in sprite sheet.
Definition at line 34 of file ModMenuScene.hpp.
| int rtp::client::scenes::EntitySpriteInfo::rectWidth |
Width of the sprite.
Definition at line 35 of file ModMenuScene.hpp.
Referenced by rtp::client::scenes::ModMenuScene::applyCustomSprite().
| std::string rtp::client::scenes::EntitySpriteInfo::texturePath |
Path to the texture.
Definition at line 32 of file ModMenuScene.hpp.