mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
19 lines
275 B
C++
19 lines
275 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
namespace Forms
|
|
{
|
|
// This enumeration represents the possible tool tip icons.
|
|
enum class ToolTipIcon
|
|
{
|
|
// No Icon.
|
|
None = 0,
|
|
// A Information Icon.
|
|
Info = 1,
|
|
// A Warning Icon.
|
|
Warning = 2,
|
|
// A Error Icon.
|
|
Error = 3
|
|
};
|
|
} |