-
-
Save dotsquid/43a8178e70e04a85a32c65d29e0d37d8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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