Skip to content

Instantly share code, notes, and snippets.

@todorok1
Created June 5, 2025 06:00
Show Gist options
  • Select an option

  • Save todorok1/d782d482484ade3d6fbdeed5602de39f to your computer and use it in GitHub Desktop.

Select an option

Save todorok1/d782d482484ade3d6fbdeed5602de39f to your computer and use it in GitHub Desktop.
シンプルRPGチュートリアル第81回 セーブ時のフラグ情報を定義するクラス
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