Porytiles
Loading...
Searching...
No Matches
vram_anim.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <vector>
4
5namespace porytiles {
6
7class VramAnim {
8 std::vector<std::vector<std::uint8_t>> frames_;
9 std::string name_;
10
11 public:
12 VramAnim() = default;
13};
14
15} // namespace porytiles