mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
15 lines
377 B
C#
15 lines
377 B
C#
using System;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using NewHorizons.External.Modules.Props.Audio;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace NewHorizons.External.Modules
|
|
{
|
|
[JsonObject]
|
|
public class SignalModule
|
|
{
|
|
[Obsolete("signals is deprecated, please use Props->signals instead")]
|
|
public SignalInfo[] signals;
|
|
}
|
|
} |