Commit 485698e3 authored by xiaoye's avatar xiaoye

fix

parent 1f05c015
Pipeline #31682 passed with stage
in 50 seconds
......@@ -40,125 +40,4 @@
53582587
97077563
#extra
!side
83986578
83986578
31036355
60082869
60082869
#spare
$1224927$
$1546123$
$3136426$
$3366982$
$3773196$
$3819470$
$4178474$
$4929256$
$5758500$
$7165085$
$9156135$
$9596126$
$9637706$
$10248389$
$12538374$
$13756293$
$15800838$
$16226786$
$17449108$
$17881964$
$22046459$
$22587018$
$23171610$
$23205979$
$23995346$
$24317029$
$26205777$
$26412047$
$27174286$
$28933734$
$29401950$
$30241314$
$30461781$
$30683373$
$31036355$
$31305911$
$32807846$
$33508719$
$34853266$
$35027493$
$36468556$
$37101832$
$38275183$
$41420027$
$41544074$
$41855169$
$42703248$
$45141844$
$46411259$
$46461247$
$47355498$
$47507260$
$48092532$
$49868263$
$51452091$
$51945556$
$56120475$
$57728571$
$58528964$
$59344077$
$60229110$
$60694662$
$62279055$
$63356631$
$63519819$
$64697231$
$65403020$
$66235877$
$66788016$
$67688478$
$68005187$
$69015963$
$69162969$
$69279219$
$70074904$
$70368879$
$71218746$
$71453557$
$72302403$
$73628505$
$73915051$
$74157028$
$76515293$
$76922029$
$77585513$
$77754945$
$78700060$
$80071763$
$81510157$
$81674782$
$82732705$
$83011277$
$83986578$
$85602018$
$85684223$
$85742772$
$86099788$
$86805855$
$87621407$
$87751584$
$87910978$
$88240808$
$90140980$
$90846359$
$93016201$
$93260132$
$94853057$
$95956346$
$97017120$
$97169186$
$98045062$
#representative
$60229110$
$47606319$
$76305638$
!side
\ No newline at end of file
......@@ -7,6 +7,14 @@ namespace WindBot.Game.AI
{
public static class CardContainer
{
public static int CompareCardCode(ClientCard cardA, ClientCard cardB)
{
if (cardA.Id < cardB.Id)
return -1;
if (cardA.Id == cardB.Id)
return 0;
return 1;
}
public static int CompareCardAttack(ClientCard cardA, ClientCard cardB)
{
if (cardA.Attack < cardB.Attack)
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment