12 lines
334 B
C++
Executable file
12 lines
334 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "CapacityBasedItemAggregator.h"
|
|
#include "DoubleDrillAggregator.generated.h"
|
|
|
|
UCLASS(Blueprintable, ClassGroup=Custom, meta=(BlueprintSpawnableComponent))
|
|
class UDoubleDrillAggregator : public UCapacityBasedItemAggregator {
|
|
GENERATED_BODY()
|
|
public:
|
|
UDoubleDrillAggregator();
|
|
};
|
|
|