Constructors of abstract classes should not be public

This commit is contained in:
Rico Tzschichholz 2019-03-18 10:09:28 +01:00
parent 0630aaf7e6
commit c5053a2b04

View file

@ -51,7 +51,7 @@ public abstract class ChessEngine : Object
}
}
public ChessEngine (string binary, string[] args, uint delay_seconds)
protected ChessEngine (string binary, string[] args, uint delay_seconds)
{
this.binary = binary;
this.args = args;