Back to project page GhostStories.
The source code is released under:
GNU General Public License
If you think the Android project GhostStories 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 games.ghoststories.views.village; /*from ww w.ja v a 2s.com*/ import android.content.Context; import android.util.AttributeSet; import android.widget.RelativeLayout; public class CircleOfPrayerView extends RelativeLayout { public CircleOfPrayerView(Context pContext) { super(pContext); } public CircleOfPrayerView(Context pContext, AttributeSet pAttrs) { super(pContext, pAttrs); } public CircleOfPrayerView(Context pContext, AttributeSet pAttrs, int pDefStyle) { super(pContext, pAttrs, pDefStyle); } }