Co-authored-by: m0_75251201 <m0_75251201@noreply.gitcode.com> Reviewed-on: Roguelite-Game-Developing-Team/Gen_Hack-and-Slash-Roguelite#55
15 lines
321 B
C#
15 lines
321 B
C#
|
|
|
|
namespace Data
|
|
{
|
|
public class AttributesDef : Define
|
|
{
|
|
public int health = 10;
|
|
public float moveSpeed = 1;
|
|
public int attack = 1;
|
|
public int defense = 0;
|
|
public float attackSpeed = 2;
|
|
public float attackRange = 3;
|
|
public int attackTargetCount = 1;
|
|
}
|
|
} |