摘要: #include <iostream> struct Role { int hp; int mp; int damage; }; bool Act(Role& Acter,Role& beAct) { beAct.hp -= Acter.damage; return beAct.hp < 0; } 阅读全文
posted @ 2023-05-23 22:39 AngDH 阅读(15) 评论(0) 推荐(0)