add match function

Adds a match to the last session in the sessions list
This commit is contained in:
HeshamTB 2018-12-21 17:30:16 +03:00
parent 7f10e36e25
commit 7b3348a723

View File

@ -63,6 +63,11 @@ namespace OWTrack
Session ses = new Session(startSR);
//Re do SR input!!
}
public void AddMatch(Match match)
{
sessions.Last().AddMatch(match);
}
public bool owRunning()
{
if (settings.TrackOW)