-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBaseClassScript.cs
More file actions
40 lines (36 loc) · 814 Bytes
/
Copy pathBaseClassScript.cs
File metadata and controls
40 lines (36 loc) · 814 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
public class BaseClassScript {
private string className;
private int damage;
private double health;
private int agility;
private int strenght;
private int inteligence;
private bool cheesecake;
public string ClassName
{
get {return className;}
set {className = value;}
}
public int Damage
{
get {return damage;}
set {damage = value;}
}
public double Health
{
get {return health;}
set {health = value;}
}
public int Agility{
get {return agility;}
set {agility = value;}
}
public int Strength{
get {return strength;}
set {strength = value;}
}
public int Inteligence {
get {return inteligence;}
set {inteligence = value;}
}
}