You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira none #ROBOMERGE-AUTHOR: mikko.mononen #ROBOMERGE-SOURCE: CL 17882720 in //UE5/Main/... #ROBOMERGE-BOT: STARSHIP (Main -> Release-Engine-Test) (v883-17842818) #ROBOMERGE[STARSHIP]: UE5-Release-Engine-Staging Release-5.0 [CL 17882731 by mikko mononen in ue5-release-engine-test branch]
16 lines
319 B
C++
16 lines
319 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "StateTreeSchema.h"
|
|
#include "StateTreeTest.generated.h"
|
|
|
|
UCLASS()
|
|
class UStateTreeTestSchema : public UStateTreeSchema
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
virtual bool IsStructAllowed(const UScriptStruct* InScriptStruct) const override { return true; }
|
|
};
|
|
|