mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-03 04:23:31 +00:00
13 lines
296 B
C++
13 lines
296 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "FortStaticMeshActor.h"
|
|
#include "FortInstancedStaticMeshActor.generated.h"
|
|
|
|
UCLASS(Blueprintable, MinimalAPI)
|
|
class AFortInstancedStaticMeshActor : public AFortStaticMeshActor {
|
|
GENERATED_BODY()
|
|
public:
|
|
AFortInstancedStaticMeshActor();
|
|
};
|
|
|