OWtrack/OWTrack/Tracker.cs

32 lines
792 B
C#
Raw Normal View History

2018-07-13 03:57:29 +02:00
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OWTrack
{
class Tracker
{
2018-07-13 04:13:05 +02:00
private int wins, losses = 0;
2018-07-13 03:57:29 +02:00
public void Track()
{
2018-07-13 04:13:05 +02:00
2018-07-13 03:57:29 +02:00
}
public bool owRunning()
{
bool isRunning = Process.GetProcessesByName("Overwatch")
.FirstOrDefault(p => p.MainModule.FileName.StartsWith(@"D:\Hesham\installed Games\Overwatch")) != default(Process);
return isRunning;
}
2018-07-13 04:13:05 +02:00
public void addWin() { wins++; }
public void addLoss() { losses++; }
public int GetWins() { return wins; }
public int GetLosses() { return losses; }
2018-07-13 03:57:29 +02:00
}
}