Back to project page touchgloid.
The source code is released under:
MIT License
If you think the Android project touchgloid 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 rucamzu.opengl; //from w w w. ja va2 s. co m public abstract class Object { protected final int id; protected Object(int id) { this.id = id; } public boolean ok() { return id > 0; } public abstract void delete(); }