コード例 #1
0
 public RegistrationWithEmail(string email, string username, string password, string refererUsername, string satoshiStatField, IIncreaseUserStat superSatoshiChanger, OnRegistrationSuccess onRegistrationSuccess, OnRegistrationFail onRegistrationFail) : this(email, username, password)
 {
     this.refererUsername       = refererUsername;
     SatoshiStatField           = satoshiStatField;
     SuperSatoshiChanger        = superSatoshiChanger;
     this.onRegistrationSuccess = onRegistrationSuccess;
     this.onRegistrationFail    = onRegistrationFail;
 }
コード例 #2
0
 public RegistrationWithEmail(string email, string username, string password, OnRegistrationSuccess onRegistrationSuccess, OnRegistrationFail onRegistrationFail) : this(email, username, password)
 {
     this.onRegistrationSuccess = onRegistrationSuccess;
     this.onRegistrationFail    = onRegistrationFail;
 }
コード例 #3
0
 public Registrator(OnRegistrationSuccess successHandler, OnRegistrationFail failHandler)
 {
 }