using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Model { internal class PlayerManager : IManager { public T Add(ref T toAdd) { throw new NotImplementedException(); } public T Remove(ref T toRemove) { throw new NotImplementedException(); } public T Update(ref T before, ref T after) { throw new NotImplementedException(); } } }