namespace RandomCs { public interface IRandom { void Start(int seed); int Next(); } }