-
-
Save todorok1/65d6309c5351a6e910d5e2faf5ac9548 to your computer and use it in GitHub Desktop.
シンプルRPGチュートリアル第23回 アイテムの効果に関する設定を保持するクラス
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; | |
namespace SimpleRpg | |
{ | |
/// <summary> | |
/// アイテムの効果に関する設定を保持するクラスです。 | |
/// </summary> | |
[Serializable] | |
public class ItemEffect | |
{ | |
/// <summary> | |
/// アイテム効果のカテゴリです。 | |
/// </summary> | |
public ItemEffectCategory itemEffectCategory; | |
/// <summary> | |
/// アイテムの効果範囲です。 | |
/// </summary> | |
public EffectTarget effectTarget; | |
/// <summary> | |
/// 効果量です。 | |
/// </summary> | |
public int value; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment