Revert "Remove DvdLib (#9068)"

This reverts commit db1913b08f.
This commit is contained in:
Shadowghost
2023-02-03 18:49:23 +01:00
parent 6bf34f8e22
commit 519709bf10
26 changed files with 1258 additions and 1 deletions

16
DvdLib/Ifo/Program.cs Normal file
View File

@@ -0,0 +1,16 @@
#pragma warning disable CS1591
using System.Collections.Generic;
namespace DvdLib.Ifo
{
public class Program
{
public IReadOnlyList<Cell> Cells { get; }
public Program(List<Cell> cells)
{
Cells = cells;
}
}
}