- tweaked bullet and endsequence
[supertux.git] / src / bitmask.h
index cc2b9a4..915b21c 100644 (file)
 #define BITW_MASK 31
 #define BITN(n) ((BITW)1 << (n))
 
-typedef struct bitmask
+struct bitmask
 {
   int w,h;
   BITW *bits;
-} bitmask;
+};
 
 /* Creates a bitmask of width w and height h.
  * The mask is automatically cleared when created.