File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed
Runtime/MediaController/Core Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -41,6 +41,10 @@ public class BcpInterfaceOptions
4141 public bool LogSentMessages => _logSentMessages ;
4242 }
4343
44+ /// <summary>
45+ /// Central hub for all communication via BCP. Manages BCP server and message handlers, provides
46+ /// reset events and sends hello, reset and goodbye messages at appropriate times.
47+ /// </summary>
4448 public class BcpInterface : IDisposable
4549 {
4650 public BcpConnectionState ConnectionState => Server . ConnectionState ;
Original file line number Diff line number Diff line change 1818
1919namespace VisualPinball . Engine . Mpf . Unity . MediaController
2020{
21+ /// <summary>
22+ /// The generic form of all BCP messages. Consists of a command and optionally parameters. Can
23+ /// be parsed into more specific types using implementations of <c>BcpMessageHandler</c>.
24+ /// </summary>
2125 public class BcpMessage
2226 {
2327 public readonly string Command ;
You can’t perform that action at this time.
0 commit comments