Skip to content

Instantly share code, notes, and snippets.

@todorok1
Created January 21, 2025 07:34
Show Gist options
  • Select an option

  • Save todorok1/00a9eb70ea6f89faf6917b5e9853433e to your computer and use it in GitHub Desktop.

Select an option

Save todorok1/00a9eb70ea6f89faf6917b5e9853433e to your computer and use it in GitHub Desktop.
シンプルRPGチュートリアル第14回 比較用の演算子を定義する列挙型
namespace SimpleRpg
{
/// <summary>
/// 比較用の演算子を定義する列挙型です。
/// </summary>
public enum ComparisonOperator
{
Equals,
NotEquals,
GreaterThan,
GreaterOrEqual,
LessThan,
LessOrEqual,
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment