new-horizons/NewHorizons/Components/NHShuttleController.cs
2022-11-21 00:06:33 -05:00

18 lines
400 B
C#

using NewHorizons.Utility;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using UnityEngine;
namespace NewHorizons.Components
{
public class NHShuttleController : NomaiShuttleController
{
public NomaiInterfaceSlot _neutralSlot;
public Sector _exteriorSector;
public Sector _interiorSector;
}
}