mirror of
https://github.com/xenia-project/xenia.git
synced 2025-12-06 07:12:03 +01:00
20 lines
457 B
C#
20 lines
457 B
C#
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> {
|
|
public readonly Debugger Debugger;
|
|
public readonly uint Handle;
|
|
|
|
public KernelObject(Debugger debugger, uint handle) {
|
|
this.self = this;
|
|
this.Debugger = debugger;
|
|
this.Handle = handle;
|
|
}
|
|
}
|
|
}
|