mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-12 08:48:30 +00:00
25 lines
424 B
C#
25 lines
424 B
C#
namespace CUE.NET.Wrapper
|
|
{
|
|
public abstract class AbstractCueDevice : ICueDevice
|
|
{
|
|
#region Properties & Fields
|
|
|
|
public CorsairDeviceInfo DeviceInfo { get; }
|
|
|
|
#endregion
|
|
|
|
#region Constructors
|
|
|
|
protected AbstractCueDevice(CorsairDeviceInfo info)
|
|
{
|
|
this.DeviceInfo = info;
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Methods
|
|
|
|
#endregion
|
|
}
|
|
}
|