mirror of
https://github.com/terrymacdonald/DisplayMagician.git
synced 2024-08-30 18:32:20 +00:00
3b63953648
This reverts commit a71b866545
.
44 lines
930 B
C#
44 lines
930 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HeliosPlus.GameLibraries
|
|
{
|
|
public class Game
|
|
{
|
|
|
|
#region Properties
|
|
public virtual uint Id { get; set; }
|
|
|
|
public virtual SupportedGameLibrary GameLibrary { get; }
|
|
|
|
public virtual bool IsRunning { get; set; }
|
|
|
|
public virtual bool IsUpdating { get; set; }
|
|
|
|
public virtual string Name { get; set; }
|
|
|
|
public virtual string ExePath { get; set; }
|
|
|
|
public virtual string IconPath { get; set; }
|
|
|
|
public virtual string Directory { get; set; }
|
|
|
|
public virtual string Executable { get; set; }
|
|
|
|
public virtual string ProcessName { get; set; }
|
|
|
|
#endregion
|
|
|
|
|
|
#region Methods
|
|
public virtual bool CopyTo(SteamGame steamGame)
|
|
{
|
|
return true;
|
|
}
|
|
#endregion
|
|
}
|
|
}
|