13 lines
218 B
C#
13 lines
218 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
public class MonsterData
|
||
|
{
|
||
|
public string name;
|
||
|
public int hp;
|
||
|
public int atk;
|
||
|
public int def;
|
||
|
public float atkTime;
|
||
|
}
|