You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
20 lines
392 B
C
20 lines
392 B
C
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreTypes.h"
|
|
#include "Stats/Stats.h"
|
|
|
|
#if WITH_PYTHON
|
|
|
|
THIRD_PARTY_INCLUDES_START
|
|
PRAGMA_DISABLE_REGISTER_WARNINGS
|
|
#include "Python.h"
|
|
#include "structmember.h"
|
|
PRAGMA_ENABLE_REGISTER_WARNINGS
|
|
THIRD_PARTY_INCLUDES_END
|
|
|
|
DECLARE_STATS_GROUP(TEXT("Python"), STATGROUP_Python, STATCAT_Advanced);
|
|
|
|
#endif // WITH_PYTHON
|