mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
18 lines
421 B
C#
18 lines
421 B
C#
using System;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using NewHorizons.External.Props;
|
|
using NewHorizons.Utility;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace NewHorizons.External.Modules
|
|
{
|
|
[JsonObject]
|
|
public class SignalModule
|
|
{
|
|
/// <summary>
|
|
/// List of signals to add (Why did xen do it like this)
|
|
/// </summary>
|
|
public SignalInfo[] signals;
|
|
}
|
|
} |