Loading...
Searching...
No Matches
Sprite.h
Go to the documentation of this file.
1#ifndef SPRITE_H
2#define SPRITE_H
3
4#pragma once
5
8
9namespace ml
10{
42 class Sprite : public Graphic<sf::Sprite>
43 {
44 public:
45 using Graphic::Graphic;
46 };
47
57 template<typename MANIFEST>
58 class SpriteWith : public Sprite, public Customizable<MANIFEST> {}; // TODO: rename to SpriteWith
59
60} // namespace ml
61
62#endif // SPRITE_H
A framework-integrated sprite.
Definition Sprite.h:43
Sprite with an attached manifest.
Definition Sprite.h:58
Definition Component.h:18