selectionBox = new NEQuad();
selectionBox.setTexture("Selection.tga");
selectionBox.layer = 1;
selectionBox.colored =true;
selectionBox.colorRed = 1;
selected = new NEVisibleLable(selectionBox);
result.add(selectionBox);
attackableBox = new NEQuad();
attackableBox.setTexture("Selection.tga");
attackableBox.layer = 2;
attackableBox.colored =true;
attackableBox.colorRed = 0.5f;
attLable = new NEVisibleLable(attackableBox);
result.add(attackableBox);
moved = new NETransparencLable(main,0.6f,1);
return result;
}