Choose a random Facing using the given Random
(Random rand)
| 287 | * Choose a random Facing using the given Random |
| 288 | */ |
| 289 | public static EnumFacing random(Random rand) |
| 290 | { |
| 291 | return values()[rand.nextInt(values().length)]; |
| 292 | } |
| 293 | |
| 294 | public static EnumFacing getFacingFromVector(float p_176737_0_, float p_176737_1_, float p_176737_2_) |
| 295 | { |
no test coverage detected