Files
brandon schaefer 3b859ae861 Setup initial UE/UBT standalone program AutoRTFMTests
#rb Neil.Henning
#preflight none

[CL 24701555 by brandon schaefer in ue5-main branch]
2023-03-17 23:06:47 -04:00

25 lines
354 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "API.h"
int NoAutoRTFM::DoSomethingC(int I)
{
return I + 13;
}
int NoAutoRTFM::DoSomethingInTransactionC(int I, void*)
{
return I + 42;
}
int NoAutoRTFM::DoSomethingCpp(int I)
{
return I + 13;
}
int NoAutoRTFM::DoSomethingInTransactionCpp(int I, void*)
{
return I + 42;
}