15 lines
374 B
C++
15 lines
374 B
C++
|
#pragma once
|
||
|
|
||
|
namespace Artwork {
|
||
|
/*
|
||
|
extern const char *orangeData;
|
||
|
const uint32_t orangeDataSize = 38*17*3;
|
||
|
const uint32_t orangeWidth = 38;
|
||
|
const uint32_t orangeHeight = 17;
|
||
|
*/
|
||
|
|
||
|
extern const char *backgroundData;
|
||
|
const unsigned int backgroundDataSize = 700*400*3;
|
||
|
const unsigned int backgroundWidth = 700;
|
||
|
const unsigned int backgroundHeight = 400;
|
||
|
} // namespace Artwork
|