VEGO-Engine
0.1
Loading...
Searching...
No Matches
AnimationHandler.h
1
#pragma once
2
#include <cstdint>
7
struct
Animation
8
{
9
uint8_t index;
10
uint8_t frames;
11
uint8_t speed;
12
13
Animation() {}
14
15
Animation(uint8_t index, uint8_t frames, uint8_t speed)
16
{
17
this->index = index;
18
this->frames = frames;
19
this->speed = speed;
20
}
21
};
22
23
24
include
AnimationHandler.h
Generated by
1.13.2