-
-
Save todorok1/d782d482484ade3d6fbdeed5602de39f to your computer and use it in GitHub Desktop.
シンプルRPGチュートリアル第81回 セーブ時のフラグ情報を定義するクラス
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
| using System; | |
| using System.Collections.Generic; | |
| namespace SimpleRpg | |
| { | |
| /// <summary> | |
| /// セーブ時のフラグ情報を定義するクラスです。 | |
| /// </summary> | |
| [Serializable] | |
| public class SaveInfoFlag | |
| { | |
| /// <summary> | |
| /// フラグの状態を保持するリストです。 | |
| /// </summary> | |
| public List<FlagState> flagStates; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment