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

9 lines
210 B
C#

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