mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
20 lines
No EOL
374 B
C#
20 lines
No EOL
374 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Cosmos.Debug.HostProcess
|
|
{
|
|
/// <summary>
|
|
/// Commands sent to the hostprocess
|
|
/// </summary>
|
|
public enum HostProcessCommandEnum: int
|
|
{
|
|
|
|
}
|
|
|
|
public enum DebugEngineCommandEnum : int
|
|
{
|
|
ApplicationTerminated = 0
|
|
}
|
|
} |