Cosmos/source/Kernel-X86/30-HAL/Cosmos.HAL/DeviceMgr.cs
2017-08-07 14:28:08 -04:00

9 lines
194 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Cosmos.HAL {
public abstract class DeviceMgr {
public List<Device> All = new List<Device>();
}
}