mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
22 lines
434 B
C#
22 lines
434 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Cosmos.Debug.Hosts
|
|
{
|
|
public abstract class Host
|
|
{
|
|
protected Dictionary<string, string> mParams;
|
|
protected bool mUseGDB;
|
|
|
|
public EventHandler OnShutDown;
|
|
|
|
public Host(Dictionary<string, string> aParams, bool aUseGDB)
|
|
{
|
|
mParams = aParams;
|
|
mUseGDB = aUseGDB;
|
|
}
|
|
|
|
public abstract void Start();
|
|
public abstract void Stop();
|
|
}
|
|
}
|