mirror of
https://github.com/PCSX2/pcsx2.git
synced 2025-04-02 10:52:54 -04:00
Please set up auto-props in your svn client. git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4488 96395faa-99c1-11dd-bbfe-3dabce05a288
19 lines
305 B
C#
19 lines
305 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
|
|
}
|
|
}
|