Files
2025-05-18 13:04:45 +08:00

25 lines
453 B
C++

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