GR.Gambling.Backgammon.GameOffer.GameOffer C# (CSharp) Method

GameOffer() public method

public GameOffer ( string creator, GameType game_type, int match_to, int stake, int limit ) : System
creator string
game_type GameType
match_to int
stake int
limit int
return System
        public GameOffer(string creator, GameType game_type, int match_to, int stake, int limit)
        {
            this.creator = creator;
            this.game_type = game_type;
            this.match_to = match_to;
            this.stake = stake;
            this.limit = limit;
            this.time_created = DateTime.UtcNow;
        }

Same methods

GameOffer::GameOffer ( string creator, GameType game_type, int match_to, int stake, int limit, System.DateTime time_created ) : System