Ejemplo n.º 1
0
        //public Item item;


        /* コンストラクタ */
        public Status()
        {
            name = "Alice";
            atk  = new Atk();
            def  = new Def();
            hp   = new Hp();
            mp   = new Mp();
            lv   = new Lv(ref hp, ref mp, ref atk, ref def);
            ex   = new Ex(ref lv);
            slot = new Slot(ref hp, ref mp, ref atk, ref def);
        }
Ejemplo n.º 2
0
 public Ex(ref Lv lv, int top, int mid, int bot) : base(top, mid, bot)
 {
     this.lv = lv;
 }
Ejemplo n.º 3
0
 public Ex(ref Lv lv, int top) : this(ref lv, top, 0, 0)
 {
 }
Ejemplo n.º 4
0
 public Ex(ref Lv lv, int top, int bot) : this(ref lv, top, bot, bot)
 {
 }
Ejemplo n.º 5
0
 /* コンストラクタ */
 public Ex(ref Lv lv) : this(ref lv, 100, 0, 0)
 {
 }