mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-04-26 20:35:43 -04:00
10 lines
312 B
C++
10 lines
312 B
C++
#pragma once
|
|
|
|
constexpr int WINDOW_ICON_WIDTH = 64;
|
|
constexpr int WINDOW_ICON_HEIGHT = 64;
|
|
extern unsigned int WINDOW_ICON_DATA[WINDOW_ICON_WIDTH * WINDOW_ICON_HEIGHT];
|
|
|
|
constexpr int APP_ICON_WIDTH = 260;
|
|
constexpr int APP_ICON_HEIGHT = 260;
|
|
extern unsigned int APP_ICON_DATA[APP_ICON_WIDTH * APP_ICON_HEIGHT];
|