示例#1
0
 public void Load(GuildCrestBackgroundJson guildCrestBackgroundJson)
 {
     Color = Color.FromArgb(
         (int)(guildCrestBackgroundJson.Color.ColorCode.A * 255),
         guildCrestBackgroundJson.Color.ColorCode.R,
         guildCrestBackgroundJson.Color.ColorCode.G,
         guildCrestBackgroundJson.Color.ColorCode.B);
 }
示例#2
0
 public GuildCrestBackground(GuildCrestBackgroundJson guildCrestBackgroundJson) : this()
 {
     Load(guildCrestBackgroundJson);
 }