ccfde19d2d
Added Mock connection Fixed AutoScroll failing with high rate message flow
11 lines
218 B
C#
11 lines
218 B
C#
namespace PettingZoo.Connection
|
|
{
|
|
public class MockConnectionInfoBuilder : IConnectionInfoBuilder
|
|
{
|
|
public ConnectionInfo Build()
|
|
{
|
|
return new ConnectionInfo();
|
|
}
|
|
}
|
|
}
|