mirror of https://github.com/PCSX2/pcsx2.git
20 lines
324 B
C#
20 lines
324 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace GSDumpGUI
|
|||
|
{
|
|||
|
public class GSTransfer : GSData
|
|||
|
{
|
|||
|
public GSTransferPath Path;
|
|||
|
}
|
|||
|
|
|||
|
public enum GSTransferPath
|
|||
|
{
|
|||
|
Path1Old = 0,
|
|||
|
Path2 = 1,
|
|||
|
Path3 = 2,
|
|||
|
Path1New = 3
|
|||
|
}
|
|||
|
}
|