diff --git a/src/Things/DifferentialDrive.cs b/src/Things/DifferentialDrive.cs index a2a5621..f0cc4ce 100644 --- a/src/Things/DifferentialDrive.cs +++ b/src/Things/DifferentialDrive.cs @@ -17,7 +17,7 @@ namespace RoboidControl { /// The owning participant /// The ID of the thing, leave out or set to zero to generate an ID /// Invoke a OnNewThing event when the thing has been created - public DifferentialDrive(ParticipantUDP participant, byte thingId = 0, bool invokeEvent = true) : base(participant, Type.DifferentialDrive, thingId, invokeEvent) { } + public DifferentialDrive(Participant participant, byte thingId = 0, bool invokeEvent = true) : base(participant, Type.DifferentialDrive, thingId, invokeEvent) { } /// /// Create a new child differential drive ///