mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-11 07:12:09 +03:00
10 lines
210 B
C
10 lines
210 B
C
#pragma once
|
|
#include "animation_storage.h"
|
|
#include "animation_manager.h"
|
|
|
|
struct StorageAnimation {
|
|
const BubbleAnimation* animation;
|
|
bool external;
|
|
StorageAnimationManifestInfo manifest_info;
|
|
};
|