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
41
41
public bool LogSentMessages => _logSentMessages ;
42
42
}
43
43
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>
44
48
public class BcpInterface : IDisposable
45
49
{
46
50
public BcpConnectionState ConnectionState => Server . ConnectionState ;
Original file line number Diff line number Diff line change 18
18
19
19
namespace VisualPinball . Engine . Mpf . Unity . MediaController
20
20
{
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>
21
25
public class BcpMessage
22
26
{
23
27
public readonly string Command ;
You can’t perform that action at this time.
0 commit comments