RLPark 1.0.0
Reinforcement Learning Framework in Java

CreateLeds.java

Go to the documentation of this file.
00001 package rlpark.plugin.irobot.data;
00002 
00003 import java.io.Serializable;
00004 
00005 public class CreateLeds implements Serializable {
00006   private static final long serialVersionUID = -5241921974188253595L;
00007   public boolean advance = true;
00008   public boolean play = false;
00009   public int powerColor = 0;
00010   public int powerIntensity = 0;
00011 
00012   public CreateLeds() {
00013   }
00014 
00015   public CreateLeds(int powerColor, int powerIntensity, boolean play, boolean advance) {
00016     this.advance = advance;
00017     this.play = play;
00018     this.powerColor = powerColor;
00019     this.powerIntensity = powerIntensity;
00020   }
00021 }
 All Classes Namespaces Files Functions Variables Enumerations
Zephyr
RLPark