Skip to content

Instantly share code, notes, and snippets.

@todorok1
Created April 30, 2025 11:14
Show Gist options
  • Select an option

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

Select an option

Save todorok1/26b22493743917996ddc638950f27fb1 to your computer and use it in GitHub Desktop.
シンプルRPGチュートリアル第72回 味方キャラクターのステータスをセットアップするクラス
/// <summary>
/// 味方キャラクターのレベルです。
/// </summary>
[SerializeField]
int _playerLevel = 1;
/// <summary>
/// 装備中の武器のIDです。
/// </summary>
[SerializeField]
int _weaponId;
/// <summary>
/// 装備中の防具のIDです。
/// </summary>
[SerializeField]
int _armorId;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment