15 lines
324 B
C#
15 lines
324 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace BlueWater.Enemies.Bosses
|
|
{
|
|
[Serializable]
|
|
public class BossConfiguration
|
|
{
|
|
[field: SerializeField]
|
|
public BossType BossType { get; private set; }
|
|
|
|
[field: SerializeField]
|
|
public GameObject Prefab { get; private set; }
|
|
}
|
|
} |