Skip to content

Instantly share code, notes, and snippets.

@zonaryFUND
Created February 2, 2022 17:31
Show Gist options
  • Save zonaryFUND/ce535901b5aa02a0af95f82d0816a850 to your computer and use it in GitHub Desktop.
Save zonaryFUND/ce535901b5aa02a0af95f82d0816a850 to your computer and use it in GitHub Desktop.
Color color = colorType switch {
UNIT_COLOR.DEFAULT => new Color(1.0f, 1.0f, 1.0f, 1.0f),
UNIT_COLOR.ACTIVE => new Color(1.0f, 1.0f, 1.0f, 1.0f),
UNIT_COLOR.CANNOT_SELECT => new Color(1.0f, 1.0f, 1.0f, 1.0f),
UNIT_COLOR.EFFECTIVE => new Color(1.0f, 1.0f, 1.0f, 1.0f),
_ => throw new InvalidOperationException()
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment