Visual Studio Code – Error C# (CS0246) while implementing an interface in a class in Unity
I'm getting acquainted with the Polymorphism of OOP while making a game in Unity. I try to use an interface that will take part in a damage system. Here is the interface code: using System.Collections; using System.Collections.Generic; using UnityEngine; public…