From bc54fd78357761bab198ae227bcfedd1321c7854 Mon Sep 17 00:00:00 2001 From: tzim Date: Tue, 9 Apr 2013 10:07:28 +0000 Subject: [PATCH] ajout interface driver --- DMX-2.0/IDriverDMX.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 DMX-2.0/IDriverDMX.cs diff --git a/DMX-2.0/IDriverDMX.cs b/DMX-2.0/IDriverDMX.cs new file mode 100644 index 0000000..11e590e --- /dev/null +++ b/DMX-2.0/IDriverDMX.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +namespace DMX2 +{ + public interface IDriverDMX + { + void Start(); + void Stop(); + int NbUniversMax { get;} + ICollection UniversAssocies{get;} + } +}