mirror of
https://github.com/Karaka-Management/cOMS.git
synced 2026-01-11 11:18:40 +00:00
12 lines
202 B
C
12 lines
202 B
C
#ifndef TOS_UI_ATTRIBUTE_BORDER_H
|
|
#define TOS_UI_ATTRIBUTE_BORDER_H
|
|
|
|
#include "../../stdlib/Types.h"
|
|
|
|
struct UIAttributeBorder {
|
|
// 4 bits per side
|
|
uint16 thickness;
|
|
uint32 color;
|
|
};
|
|
|
|
#endif |