(String key, Color color)
| 88 | } |
| 89 | |
| 90 | public ValveWriter putTransparentColor(String key, Color color) throws IOException { |
| 91 | return this.put(key, color.red + " " + color.green + " " + color.blue + " " + color.alpha); |
| 92 | } |
| 93 | |
| 94 | public ValveWriter put(String key, Angles angles) throws IOException { |
| 95 | return this.put(key, angles.getX() + " " + angles.getY() + " " + angles.getZ()); |