WIP
DirectOutput framework for virtual pinball cabinets WIP
Go to:
Overview 
Mapping.cs
Go to the documentation of this file.
1 using System;
2 using System.Collections.Generic;
3 using System.Text;
4 
5 namespace PinballX.Table2RomMapping
6 {
10  public class Mapping
11  {
19  public string TableName { get; set; }
26  public string RomName { get; set; }
27  }
28 }
Simple class containing the mappinging between tablename and romname
Definition: Mapping.cs:10