EOS 2  1.1.0
Einfache Objektbasierte Sprache
Color.java
gehe zur Dokumentation dieser Datei
1 package de.lathanda.eos.ev3.bytecode;
2 
3 public interface Color {
4  byte NONE = (byte)0x01;
5  byte BLACK = (byte)0x01;
6  byte BLUE = (byte)0x02;
7  byte GREEN = (byte)0x03;
8  byte YELLOW = (byte)0x04;
9  byte RED = (byte)0x05;
10  byte WHITE = (byte)0x06;
11  byte BROWN = (byte)0x07;
12 }
Impressum