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

Misc tweaks.

parent 5095e3de
No related branches found
No related tags found
1 merge request!25Ability rework.
......@@ -19,22 +19,22 @@ namespace BigSock {
/*
The name of the ability.
*/
public string Name { get; set; }
public abstract string Name { get;}
/*
The description of the ability.
*/
public string Description { get; set; }
public abstract string Description { get; }
/*
The id of the ability.
*/
public ulong Id { get; set; }
public abstract ulong Id { get; }
/*
The next time the ability has cooled down.
*/
public DateTime NextTimeCanUse { get; set; } = DateTime.Now;
public DateTime NextTimeCanUse { get; protected set; } = DateTime.Now;
/*
Whether the ability is ready.
......
......@@ -15,7 +15,7 @@ namespace BigSock {
/*
The attack stats of the ability.
*/
public IAttackStats AttackStats { get; set; }
public IAttackStats AttackStats { get; protected set; }
}
......
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