new-horizons/Marshmallow/Utility/MarshmallowBody.cs
Mister_Nebula dc23ac2de8 Massive rewrite
- Added moon support
- Rewrote every class for readability
- Rewrote Main class to simplify code (file planets now load on scene load)
2020-06-11 19:41:39 +01:00

22 lines
391 B
C#

using Marshmallow.External;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using UnityEngine;
namespace Marshmallow.Utility
{
public class MarshmallowBody
{
public MarshmallowBody(IPlanetConfig config)
{
Config = config;
}
public IPlanetConfig Config;
public GameObject Object;
}
}