Exemplo n.º 1
0
 internal GameConsole(string name, Uri url, RomSource source)
 {
     Name       = name;
     RomListUrl = url;
     Source     = source;
     Id         = Name;
 }
Exemplo n.º 2
0
 internal GameConsole(string name, string url, RomSource source)
     : this(name, new Uri(url), source)
 {
 }