mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
15 lines
246 B
C
15 lines
246 B
C
|
#pragma once
|
||
|
|
||
|
#include <cstdint>
|
||
|
|
||
|
namespace Forms
|
||
|
{
|
||
|
// Specifies the appearance of a control.
|
||
|
enum class Appearence
|
||
|
{
|
||
|
// The default appearance defined by the control.
|
||
|
Normal = 0,
|
||
|
// The appearance of a Windows button.
|
||
|
Button = 1
|
||
|
};
|
||
|
}
|