ajout interface driver
This commit is contained in:
parent
ea2847a520
commit
bc54fd7835
1 changed files with 12 additions and 0 deletions
12
DMX-2.0/IDriverDMX.cs
Normal file
12
DMX-2.0/IDriverDMX.cs
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
namespace DMX2
|
||||
{
|
||||
public interface IDriverDMX
|
||||
{
|
||||
void Start();
|
||||
void Stop();
|
||||
int NbUniversMax { get;}
|
||||
ICollection<UniversDMX> UniversAssocies{get;}
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue