Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- enum StarType { O, B, A, F, G, K, M }
- public static StarType RandomStarType() {
- StarType[] allTypes = Enum.GetValues(typeof(MyEnum));
- return allTypes[ Random.Range(0, allTypes.Length) ];
- }
Advertisement
Add Comment
Please, Sign In to add comment