mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
24 lines
492 B
C#
24 lines
492 B
C#
using NewHorizons.Utility;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace NewHorizons.External
|
|
{
|
|
public class PropModule : Module
|
|
{
|
|
public ScatterInfo[] Scatter;
|
|
public MVector3[] Rafts;
|
|
|
|
public class ScatterInfo
|
|
{
|
|
public string path;
|
|
public int count;
|
|
public MVector3 offset;
|
|
public MVector3 rotation;
|
|
}
|
|
}
|
|
}
|