Parent Directory
|
Revision Log
+ add entries for platforms + add entries for roms + add key events
1 | using System; |
2 | using System.Collections.Generic; |
3 | using System.ComponentModel; |
4 | using System.Drawing; |
5 | using System.Data; |
6 | using System.Linq; |
7 | using System.Text; |
8 | using System.Windows.Forms; |
9 | |
10 | namespace EmuXPortal |
11 | { |
12 | public partial class GameControl : UserControl |
13 | { |
14 | public GameControl() |
15 | { |
16 | InitializeComponent(); |
17 | } |
18 | public Image GameImage { get { return gameImage.Image; } set { gameImage.Image = value; } } |
19 | public string GameName { get { return gameName.Text; } set { gameName.Text = value; } } |
20 | } |
21 | } |
ViewVC Help | |
Powered by ViewVC 1.1.22 |