21 lines
278 B
C++
21 lines
278 B
C++
#pragma once
|
|
#include <string>
|
|
|
|
struct TaskBarItem {
|
|
int id;
|
|
int place_x;
|
|
int place_y;
|
|
int width;
|
|
int height;
|
|
int offset_x;
|
|
bool focused;
|
|
std::string name;
|
|
};
|
|
|
|
struct Desktop_Item {
|
|
int id;
|
|
int place_x;
|
|
int place_y;
|
|
int icon_size_x;
|
|
int icon_size_y;
|
|
}; |