Nick J. Connors d721201b0e Forked
Renamed to new horizons, updated to current versions of OWML and Outer Wilds, added BlackHoleBuilder, LavaBuilder, RingBuilder. Added support to modify existing planets with configs.
2021-12-08 00:09:11 -05:00

16 lines
274 B
C#

using System.Collections.Generic;
using System.Linq;
namespace NewHorizons.Utility
{
public class MTuple
{
public MTuple(params object[] _items)
{
Items = _items.ToList();
}
public List<object> Items { get; }
}
}