#753 Adds methods to build new room type

This commit is contained in:
Neil Dorin
2021-07-22 12:44:13 -06:00
parent c4752b2ac2
commit bfa48091d9
2 changed files with 9 additions and 2 deletions

View File

@@ -39,6 +39,10 @@ namespace PepperDash.Essentials.Room.Config
{
return new EssentialsDualDisplayRoom(roomConfig);
}
if (typeName == "combinedhuddlevtc1")
{
return new EssentialsCombinedHuddleVtc1Room(roomConfig);
}
return typeName != "techroom" ? null : new EssentialsTechRoom(roomConfig);
}