add PlayerManager class and stub class
continuous-integration/drone/push Build is passing Details

pull/39/head
Ismail TAHA JANAN 2 years ago
parent 9c09323f95
commit 31f988dcb0

@ -0,0 +1,26 @@
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<T>(ref T toAdd)
{
throw new NotImplementedException();
}
public T Remove<T>(ref T toRemove)
{
throw new NotImplementedException();
}
public T Update<T>(ref T before, ref T after)
{
throw new NotImplementedException();
}
}
}

@ -0,0 +1,15 @@
using System;
using System.Media;
using System.Security.Cryptography.X509Certificates;
using Model.Player;
public class Stub
{
public Stub()
{
}
}
Loading…
Cancel
Save