mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
Do not try catch anymore This would cause some addon devs to just ignore an error when they really shouldn't. Now it will show the body where this error occurs since the error gets handled higher up.
11 lines
165 B
C#
11 lines
165 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace NewHorizons.External.Modules.Props.Remote
|
|
{
|
|
[JsonObject]
|
|
public class ProjectionStoneInfo : GeneralPropInfo
|
|
{
|
|
|
|
}
|
|
}
|