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

FromOffer() public static method

Creates a deep-copy from existing offer and updates it's time stamp.
public static FromOffer ( GameOffer offer ) : GameOffer
offer GameOffer
return GameOffer
        public static GameOffer FromOffer(GameOffer offer)
        {
            return new GameOffer(offer.creator, offer.game_type, offer.match_to, offer.stake, offer.limit);
        }