Skip to content

Instantly share code, notes, and snippets.

@dotsquid
Last active September 3, 2021 05:53
Show Gist options
  • Select an option

  • Save dotsquid/43a8178e70e04a85a32c65d29e0d37d8 to your computer and use it in GitHub Desktop.

Select an option

Save dotsquid/43a8178e70e04a85a32c65d29e0d37d8 to your computer and use it in GitHub Desktop.
using System;
using UnityEngine;
[Serializable]
public class SystemLanguageStableEnum : StableEnum<SystemLanguage>
{
public static implicit operator SystemLanguageStableEnum(SystemLanguage value) => new SystemLanguageStableEnum() { _value = value };
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment