2025-01-08 01:24:12 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace Artwork {
|
2025-01-08 11:23:03 +00:00
|
|
|
extern const char *sliderData;
|
|
|
|
const unsigned int sliderWidth = 30;
|
|
|
|
const unsigned int sliderHeight = 30;
|
|
|
|
const unsigned int sliderDataSize = sliderWidth * sliderHeight * 4;
|
2025-01-08 01:24:12 +00:00
|
|
|
|
|
|
|
extern const char *bgData;
|
|
|
|
const unsigned int bgWidth = 360;
|
|
|
|
const unsigned int bgHeight = 160;
|
|
|
|
const unsigned int bgDataSize = bgWidth * bgHeight * 3;
|
|
|
|
} // namespace Artwork
|