Skip to content

Instantly share code, notes, and snippets.

@todorok1
Last active May 8, 2025 01:55
Show Gist options
  • Save todorok1/20eabe5dac214b247d52de4b5fd9c80e to your computer and use it in GitHub Desktop.
Save todorok1/20eabe5dac214b247d52de4b5fd9c80e to your computer and use it in GitHub Desktop.
シンプルRPGチュートリアル第73回 キャラクターのステータスを管理するクラス
/// <summary>
/// プレイヤーの所持アイテムのリストです。
/// </summary>
public static List<PartyItemInfo> partyItemInfoList;
/// <summary>
/// アイテムを装備していない時のIDです。
/// </summary>
public static readonly int NoEquipmentId = 0;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment