飞船大战
使用golang的2D游戏引擎ebiten编写
git clone https://github.com/crazykun/airship-war.git
cd airship-war
go mod tidy
go run .
-
玩家控制的飞艇只能左右移动,使用方向键(或←与→),按下空格发出子弹
-
敌方飞艇从屏幕上方向玩家飞来,被碰撞后游戏失败
-
敌方飞艇全部降落后游戏结束,计算得分
ebiten(https://github.com/hajimehoshi/ebiten)
go-daily-lib每日一课(https://github.com/darjun/go-daily-lib)