Duke's Big Numbers
1.0
C++ and Blueprint libraries for performing math, analysis, and formatting with really large numbers (>10e308).
Toggle main menu visibility
Main Page
Related Pages
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
a
b
c
d
e
f
g
i
k
l
m
n
o
p
r
s
t
u
x
z
Functions
a
b
c
d
e
f
g
i
k
l
m
n
o
p
r
s
t
u
x
z
Variables
Related Functions
o
Files
File List
•
All
Classes
Functions
Variables
Friends
Pages
Loading...
Searching...
No Matches
BlueprintHelper.h
1
// Copyright (C)2023 Smiling Cat Entertainment, LTD. All Rights Reserved.
2
3
#pragma once
4
5
/*
6
* Indiciates the result of a comparison operation
7
*/
8
UENUM(BlueprintType)
9
enum class
ESuccessFail : uint8
10
{
11
//The operation succeeded
12
Succeeded,
13
14
//The operation failed
15
Failed,
16
};
17
18
/*
19
* Indiciates the result of a comparison operation
20
*/
21
UENUM(BlueprintType)
22
enum class
ECompareResult : uint8
23
{
24
//The left side is greater than the right side
25
Greater UMETA(DisplayName =
">"
),
26
27
//The left side is equal to the right side
28
Equal UMETA(DisplayName =
"=="
),
29
30
//The left side is less than the right side
31
Less UMETA(DisplayName =
"<"
),
32
};
unreal
PachinkoEvolution
Plugins
DukesBigNumbers
Source
DukesBigNumbers
Public
BlueprintHelper.h
Generated by
1.9.6