13 lines
364 B
C#
13 lines
364 B
C#
using UnityEngine;
|
|
|
|
namespace AsteroidGame.Entities
|
|
{
|
|
[CreateAssetMenu(fileName = "newPowerConfiguration", menuName = "Configuration/Power")]
|
|
public class SoPowerConfig : ScriptableObject
|
|
{
|
|
public SoPowerBaseRuntimeSet _activePowerStructures;
|
|
public bool isGenerator;
|
|
public bool isConsumer;
|
|
public int maxPower;
|
|
}
|
|
} |