UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
NoopCounter.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "CoreTypes.h"
6
9{
10public:
12
16
18 {
19 return 0;
20 }
21
22 int32 Add( int32 Amount )
23 {
24 return 0;
25 }
26
28 {
29 return 0;
30 }
31
33 {
34 return 0;
35 }
36
38 {
39 return 0;
40 }
41
43 {
44 return 0;
45 }
46
48 {
49 return 0;
50 }
51};
FPlatformTypes::int32 int32
A 32-bit signed integer.
Definition Platform.h:1125
Definition NoopCounter.h:9
int32 Decrement()
Definition NoopCounter.h:27
int32 GetValue() const
Definition NoopCounter.h:47
FNoopCounter(int32 Value)
Definition NoopCounter.h:15
FNoopCounter()
Definition NoopCounter.h:13
FNoopCounter(const FNoopCounter &Other)
Definition NoopCounter.h:14
int32 IntegerType
Definition NoopCounter.h:11
int32 Subtract(int32 Amount)
Definition NoopCounter.h:32
int32 Add(int32 Amount)
Definition NoopCounter.h:22
int32 Set(int32 Value)
Definition NoopCounter.h:37
int32 Increment()
Definition NoopCounter.h:17
int32 Reset()
Definition NoopCounter.h:42