using UnityEngine; using System.Collections; public abstract class AbstractSampleClass : ISampleClass { public abstract void SampleMethod(T value); }