aboutsummaryrefslogtreecommitdiff
path: root/DvdLib/Ifo/PgcCommandTable.cs
diff options
context:
space:
mode:
authorVasily <JustAMan@users.noreply.github.com>2019-03-07 23:57:51 +0300
committerGitHub <noreply@github.com>2019-03-07 23:57:51 +0300
commit75996476a7ce63134e37935e8ddeddfdb0d63a5d (patch)
treefccdb1c92505c080149f3abf4fc63cf3392fd5cb /DvdLib/Ifo/PgcCommandTable.cs
parent5cb3f04389fc251c7be6c6098c901c83170f5f83 (diff)
parent65c0b486aaa6d02855a6915edfb880da691b4709 (diff)
Merge pull request #1061 from Bond-009/dead
Remove dead code
Diffstat (limited to 'DvdLib/Ifo/PgcCommandTable.cs')
-rw-r--r--DvdLib/Ifo/PgcCommandTable.cs17
1 files changed, 0 insertions, 17 deletions
diff --git a/DvdLib/Ifo/PgcCommandTable.cs b/DvdLib/Ifo/PgcCommandTable.cs
deleted file mode 100644
index d329fcba2..000000000
--- a/DvdLib/Ifo/PgcCommandTable.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-using System.Collections.Generic;
-
-namespace DvdLib.Ifo
-{
- public class ProgramChainCommandTable
- {
- public readonly ushort LastByteAddress;
- public readonly List<VirtualMachineCommand> PreCommands;
- public readonly List<VirtualMachineCommand> PostCommands;
- public readonly List<VirtualMachineCommand> CellCommands;
- }
-
- public class VirtualMachineCommand
- {
- public readonly byte[] Command;
- }
-}