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
20 lines
307 B
C#
20 lines
307 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace GSDumpGUI
|
|
{
|
|
public class GSData
|
|
{
|
|
public GSType id;
|
|
public byte[] data;
|
|
}
|
|
|
|
public enum GSType
|
|
{
|
|
Transfer = 0,
|
|
VSync = 1,
|
|
ReadFIFO2 = 2,
|
|
Registers = 3
|
|
}
|
|
}
|