Duke's Big Numbers 1.0
C++ and Blueprint libraries for performing math, analysis, and formatting with really large numbers (>10e308).
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*/
8UENUM(BlueprintType)
9enum 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*/
21UENUM(BlueprintType)
22enum 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};