mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
17 lines
369 B
C#
17 lines
369 B
C#
using NewHorizons.External.SerializableData;
|
|
|
|
namespace NewHorizons.External.Modules.VariableSize
|
|
{
|
|
public class SandModule : VariableSizeModule
|
|
{
|
|
/// <summary>
|
|
/// Size of the sand
|
|
/// </summary>
|
|
public float size;
|
|
|
|
/// <summary>
|
|
/// Tint of the sand
|
|
/// </summary>
|
|
public MColor tint;
|
|
}
|
|
} |