23 lines
365 B
C++
23 lines
365 B
C++
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
|
|
/**
|
|
*
|
|
*/
|
|
class FORTIS_TAKTIKA_API CppEnums
|
|
{
|
|
public:
|
|
CppEnums();
|
|
~CppEnums();
|
|
};
|
|
|
|
UENUM(BlueprintType)
|
|
enum Enum_AnimMode
|
|
{
|
|
show UMETA(DisplayName = "show"),
|
|
hide UMETA(DisplayName = "hide"),
|
|
roll UMETA(DisplayName = "roll"),
|
|
}; |