15 lines
292 B
C#
15 lines
292 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
using Open_Closed.Interfaces;
|
|
|
|
namespace Open_Closed.Classes
|
|
{
|
|
public class FireMagic : IMagic
|
|
{
|
|
public string MagicType { get { return "fire"; } }
|
|
}
|
|
}
|