Skip to content

Instantly share code, notes, and snippets.

@todorok1
Created February 23, 2025 08:30
Show Gist options
  • Save todorok1/03619d988767cf680d10459265aa9663 to your computer and use it in GitHub Desktop.
Save todorok1/03619d988767cf680d10459265aa9663 to your computer and use it in GitHub Desktop.
シンプルRPGチュートリアル第25回 Addressablesのラベルに関する定義値を保持するクラス
namespace SimpleRpg
{
/// <summary>
/// Addressablesのラベルに関する定義値を保持するクラスです。
/// </summary>
public static class AddressablesLabels
{
/// <summary>
/// キャラクターデータのラベルです。
/// </summary>
public static readonly string Character = "Character";
/// <summary>
/// キャラクターの経験値表のラベルです。
/// </summary>
public static readonly string ExpTable = "ExpTable";
/// <summary>
/// キャラクターのパラメータ表のラベルです。
/// </summary>
public static readonly string ParameterTable = "ParameterTable";
/// <summary>
/// 敵キャラクターのデータのラベルです。
/// </summary>
public static readonly string Enemy = "Enemy";
/// <summary>
/// アイテムのデータのラベルです。
/// </summary>
public static readonly string Item = "Item";
/// <summary>
/// 魔法のデータのラベルです。
/// </summary>
public static readonly string Magic = "Magic";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment