Animation.hpp 155 B

1234567891011
  1. #pragma once
  2. #include <SFML/Graphics.hpp>
  3. struct Animation {
  4. sf::Texture texture;
  5. unsigned count;
  6. unsigned duration;
  7. std::string name;
  8. bool loop;
  9. };