13 lines
No EOL
289 B
C#
13 lines
No EOL
289 B
C#
public class SupportItem : Item
|
|
{
|
|
public override string Type => "Support";
|
|
public SupportItem(string name, string description) : base(name, description)
|
|
{
|
|
|
|
}
|
|
|
|
public override void Action()
|
|
{
|
|
Console.WriteLine("Healing item has been used");
|
|
}
|
|
} |