-
-
Save todorok1/20eabe5dac214b247d52de4b5fd9c80e to your computer and use it in GitHub Desktop.
シンプルRPGチュートリアル第73回 キャラクターのステータスを管理するクラス
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
/// <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