You've already forked linux-packaging-mono
11 lines
218 B
C#
11 lines
218 B
C#
using System;
|
|
|
|
namespace Mono.Debugger.Soft
|
|
{
|
|
public class VMStartEvent : Event
|
|
{
|
|
public VMStartEvent (VirtualMachine vm, int req_id, long thread_id) : base (EventType.VMStart, vm, req_id, thread_id) {
|
|
}
|
|
}
|
|
}
|