mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 19:23:19 +00:00
13 lines
260 B
C++
13 lines
260 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "FortAccountItem.h"
|
|
#include "FortCodeTokenItem.generated.h"
|
|
|
|
UCLASS(Blueprintable)
|
|
class FORTNITEGAME_API UFortCodeTokenItem : public UFortAccountItem {
|
|
GENERATED_BODY()
|
|
public:
|
|
UFortCodeTokenItem();
|
|
};
|
|
|