new-horizons/NewHorizons/Components/StellarRemnantController.cs
2022-08-18 08:21:04 -04:00

16 lines
432 B
C#

using NewHorizons.Components.SizeControllers;
using System;
using System.Collections.Generic;
using System.Linq;
using UnityEngine;
namespace NewHorizons.Components
{
public class StellarRemnantController : MonoBehaviour
{
private StarEvolutionController _starEvolutionController;
public void SetStarEvolutionController(StarEvolutionController controller) => _starEvolutionController = controller;
}
}