xenia/src/Xenia.Debug/KernelObject.cs

20 lines
457 B
C#
Raw Normal View History

2015-05-24 22:43:15 +02:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xenia.Debug.Utilities;
namespace Xenia.Debug {
public class KernelObject : Changeable<KernelObject> {
2015-05-24 22:43:15 +02:00
public readonly Debugger Debugger;
public readonly uint Handle;
public KernelObject(Debugger debugger, uint handle) {
this.self = this;
2015-05-24 22:43:15 +02:00
this.Debugger = debugger;
this.Handle = handle;
}
}
}