Repository URL to install this package:
Version:
1.3.1 ▾
|
// This file adds support for record types
// More info:
// https://docs.unity3d.com/2021.2/Documentation/Manual/CSharpCompiler.html#:~:text=compilation%20generates%20errors.-,Record%20support,-C%23%209%20init
// https://stackoverflow.com/a/62656145/6702274
using System.ComponentModel;
// ReSharper disable once CheckNamespace
namespace System.Runtime.CompilerServices
{
[EditorBrowsable(EditorBrowsableState.Never)]
// ReSharper disable once UnusedType.Global
public static class IsExternalInit {}
}