mirror of
https://github.com/Milxnor/Project-Reboot-3.0.git
synced 2026-01-13 02:42:22 +01:00
15 lines
435 B
C++
15 lines
435 B
C++
#pragma once
|
|
|
|
#include "Object.h"
|
|
|
|
#include "FortResourceItemDefinition.h"
|
|
#include "BuildingSMActor.h"
|
|
|
|
class UFortKismetLibrary : public UObject
|
|
{
|
|
public:
|
|
static UFortResourceItemDefinition* K2_GetResourceItemDefinition(EFortResourceType ResourceType);
|
|
static void ApplyCharacterCosmetics(UObject* WorldContextObject, const TArray<UObject*>& CharacterParts, UObject* PlayerState, bool* bSuccess);
|
|
|
|
static UClass* StaticClass();
|
|
}; |