mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
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.
16 lines
274 B
C#
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; }
|
|
}
|
|
}
|