diff options
Diffstat (limited to 'DvdLib/Ifo/Program.cs')
| -rw-r--r-- | DvdLib/Ifo/Program.cs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/DvdLib/Ifo/Program.cs b/DvdLib/Ifo/Program.cs new file mode 100644 index 000000000..48870d9dd --- /dev/null +++ b/DvdLib/Ifo/Program.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace DvdLib.Ifo +{ + public class Program + { + public readonly List<Cell> Cells; + + public Program(List<Cell> cells) + { + Cells = cells; + } + } +} |
