Skip to content
Snippets Groups Projects
Commit 9413dd2b authored by Robin Halseth Sandvik's avatar Robin Halseth Sandvik
Browse files

Changed default values.

parent ea6a3693
No related branches found
No related tags found
1 merge request!25Ability rework.
......@@ -14,27 +14,27 @@ namespace BigSock {
/*
The damage of the attack.
*/
public float Damage { get; set; }
public float Damage { get; set; } = 1f;
/*
The knockback of the attack.
*/
public float Knockback { get; set; }
public float Knockback { get; set; } = 1f;
/*
The range of the attack.
*/
public float Range { get; set; }
public float Range { get; set; } = 1f;
/*
The projectile speed of the attack.
*/
public float ProjectileSpeed { get; set; }
public float ProjectileSpeed { get; set; } = 1f;
/*
The attack speed of the attack.
*/
public float AttackSpeed { get; set; }
public float AttackSpeed { get; set; } = 1f;
/*
The source of the attack.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment