0f765925bc1679bed83830f29011a5f0bd88def8
11 /**
12 * Mob class.
13 */
17 MOB,
18 SAND,
19 GRAVEL
20 }
23 LEFT,
24 RIGHT
25 }
37 /**
38 * @param x in pixels
39 * @param y in pixels
40 * @param width in pixels
41 * @param height in pixels
42 * @param mDirection Direction in which mob is looking
43 */
51 }
55 }
57 /**
58 * @return The X coordinate of a mob in blocks
59 */
62 }
64 /**
65 * @return The Y coordinate of mob's upper edge in blocks
66 */
69 }
71 /**
72 * @return The Y coordinate if mob's vertical center in blocks
73 */
76 }
78 /**
79 * @return The Y coordinate of mob's legs in blocks
80 */
83 }
87 }
91 }
93 /**
94 * @return Integer representing a direction in which mob is looking, where 0 is left and 1 is right
95 */
98 }
102 }
106 }
108 /**
109 * Switches direction in which mob is looking
110 */
113 }
117 }
121 }
125 }
127 /**
128 * Set's mob's dead variable to true and nothing else. It doesn't delete the
129 */
132 }
137 }
141 }
145 }
149 }
153 }
157 }
161 }
166 }
169 }
170 }
177 }