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