mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
17 lines
259 B
C++
17 lines
259 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
namespace Forms
|
|
{
|
|
// Specifies the border style for a control or form.
|
|
enum class BorderStyle
|
|
{
|
|
// No border.
|
|
None = 0,
|
|
// A single-line border.
|
|
FixedSingle = 1,
|
|
// A three-dimensional border.
|
|
Fixed3D = 2
|
|
};
|
|
} |