Skip to content

Instantly share code, notes, and snippets.

@todorok1
Created April 27, 2025 07:37
Show Gist options
  • Save todorok1/5801c4bfec0ed254b114dd6f4d3598eb to your computer and use it in GitHub Desktop.
Save todorok1/5801c4bfec0ed254b114dd6f4d3598eb to your computer and use it in GitHub Desktop.
シンプルRPGチュートリアル第70回 味方キャラクターのステータスをセットアップするクラス
/// <summary>
/// 味方キャラクターのステータスをセットします。
/// </summary>
[SerializeField]
List<int> _partyCharacters = new() {1};
/// <summary>
/// 味方キャラクターのレベルです。
/// </summary>
[SerializeField]
int _playerLevel = 1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment