ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/EmuXPortal/trunk/EmuXPortal/Api/RomFavorite.cs
Revision: 168
Committed: Mon Aug 4 03:27:49 2014 UTC (9 years, 4 months ago) by william
File size: 635 byte(s)
Log Message:
+ add initial back-end support for removing/adding favorite roms

File Contents

# Content
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5
6 namespace EmuXPortal.Api
7 {
8 public class RomFavorite
9 {
10 #region static members
11 public static bool IsFavorite(IRomConfig rom)
12 {
13 return false;
14 }
15 public static bool AddFavorite(IRomConfig rom)
16 {
17 return false;
18 }
19 public static bool RemoveFavorite(IRomConfig rom)
20 {
21 return false;
22 }
23 public static bool UpdateFavorites()
24 {
25 return false;
26 }
27 #endregion
28 }
29 }