Skip to content

Instantly share code, notes, and snippets.

@todorok1
Created January 2, 2025 06:12
Show Gist options
  • Save todorok1/4b27bc2bfae9ca003e34ba878f9b351a to your computer and use it in GitHub Desktop.
Save todorok1/4b27bc2bfae9ca003e34ba878f9b351a to your computer and use it in GitHub Desktop.
シンプルRPGチュートリアル第7回 タグ名の定義クラス
namespace SimpleRpg
{
/// <summary>
/// タグに関する定義値を保持するクラスです。
/// </summary>
public static class ObjectTagSettings
{
/// <summary>
/// 操作キャラクターのタグ名です。
/// </summary>
public static readonly string Player = "Player";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment