Back to project page Llama.
The source code is released under:
MIT License
If you think the Android project Llama listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package io.github.nick11roberts.llamaspawningbuttonthing; // w w w . j a v a 2s.c o m public class RandomLlamaAttributes { private Double x; private Double y; private Double rotation; public void setX(Double inputX){ x = inputX; } public void setY(Double inputY){ y = inputY; } public void setRotation(Double inputRotation){ rotation = inputRotation; } public Double getX(){ return x; } public Double getY(){ return y; } public Double getRotation(){ return rotation; } }