13 lines
360 B
C++
13 lines
360 B
C++
|
#pragma once
|
||
|
|
||
|
namespace Artwork {
|
||
|
extern const char *whiteData;
|
||
|
const unsigned int sliderDataSize = 38*17*3;
|
||
|
const unsigned int sliderWidth = 41;
|
||
|
const unsigned int sliderHeight = 26;
|
||
|
|
||
|
extern const char *bgData;
|
||
|
const unsigned int bgWidth = 360;
|
||
|
const unsigned int bgHeight = 160;
|
||
|
const unsigned int bgDataSize = bgWidth * bgHeight * 3;
|
||
|
} // namespace Artwork
|