00001 package edu.tum.cs.ias.knowrob.util.datastructures; 00002 00003 @Deprecated 00004 public class ActionData{ 00005 public int episode_nr; 00006 public String goal; 00007 public String type; 00008 public float ent_x; 00009 public float ent_y; 00010 public float ent_z; 00011 public float b21_x; 00012 public float b21_y; 00013 00014 public ActionData(int nepisode_nr, String ngoal, String ntype, float nent_x, float nent_y, float nent_z, float nb21_x, float nb21_y){ 00015 episode_nr = nepisode_nr; 00016 goal = ngoal; 00017 type = ntype; 00018 ent_x = nent_x; 00019 ent_y = nent_y; 00020 ent_z = nent_z; 00021 b21_x = nb21_x; 00022 b21_y = nb21_y; 00023 } 00024 00025 00026 }