MX 2 年之前
父节点
当前提交
b77d9e3d01
共有 1 个文件被更改,包括 1 次插入6 次删除
  1. 1 6
      main_apps_sources/flappy_bird/flappy_bird.c

+ 1 - 6
main_apps_sources/flappy_bird/flappy_bird.c

@@ -29,12 +29,7 @@ typedef enum {
     EventTypeKey,
 } EventType;
 
-typedef enum {
-    BirdState0 = 0,
-    BirdState1,
-    BirdState2,
-    BirdStateMAX
-} BirdState;
+typedef enum { BirdState0 = 0, BirdState1, BirdState2, BirdStateMAX } BirdState;
 
 const Icon* bird_states[BirdStateMAX] = {
     &I_bird_01,