-
-
Save todorok1/03619d988767cf680d10459265aa9663 to your computer and use it in GitHub Desktop.
シンプルRPGチュートリアル第25回 Addressablesのラベルに関する定義値を保持するクラス
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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