12 lines
371 B
C++
Executable file
12 lines
371 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "Components/PointLightComponent.h"
|
|
#include "FirstPersonPointLightComponent.generated.h"
|
|
|
|
UCLASS(Blueprintable, EditInlineNew, ClassGroup=Custom, meta=(BlueprintSpawnableComponent))
|
|
class UFirstPersonPointLightComponent : public UPointLightComponent {
|
|
GENERATED_BODY()
|
|
public:
|
|
UFirstPersonPointLightComponent();
|
|
};
|
|
|