You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
401 B
24 lines
401 B
// Copyright Zelle Games
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "Unit.h"
|
|
#include "RosterEntry.generated.h"
|
|
|
|
/**
|
|
*
|
|
*/
|
|
UCLASS(Blueprintable)
|
|
class STREETPUNKZ_API URosterEntry : public UObject
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
public:
|
|
UPROPERTY(BlueprintReadWrite, meta=(ExposeOnSpawn))
|
|
TSubclassOf<AUnit> EnemyUnit;
|
|
|
|
UPROPERTY(BlueprintReadWrite, meta=(ExposeOnSpawn))
|
|
int32 DifficultyRating;
|
|
};
|