mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
17 lines
501 B
C++
17 lines
501 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
namespace Forms
|
|
{
|
|
// This enumeration represents the possible default message box buttons.
|
|
enum class MessageBoxDefaultButton
|
|
{
|
|
// Specifies that the first button on the message box should be the default button.
|
|
Button1 = 0x00000000,
|
|
// Specifies that the second button on the message box should be the default button.
|
|
Button2 = 0x00000100,
|
|
// Specifies that the third button on the message box should be the default button.
|
|
Button3 = 0x00000200,
|
|
};
|
|
} |