13 lines
384 B
C++
13 lines
384 B
C++
#pragma once
|
|
|
|
namespace Artwork {
|
|
extern const char *sliderData;
|
|
const unsigned int sliderWidth = 30;
|
|
const unsigned int sliderHeight = 30;
|
|
const unsigned int sliderDataSize = sliderWidth * sliderHeight * 4;
|
|
|
|
extern const char *bgData;
|
|
const unsigned int bgWidth = 360;
|
|
const unsigned int bgHeight = 160;
|
|
const unsigned int bgDataSize = bgWidth * bgHeight * 3;
|
|
} // namespace Artwork
|