Back to project page rpg-droid.
The source code is released under:
Apache License
If you think the Android project rpg-droid 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 com.thing.rpg_droid.app; //from w ww . j a v a 2s . c om import android.app.Fragment; /** * Created by jon on 6/08/14. */ public interface ICharacter { int getPageCount(); Class<? extends Fragment> getPageFragmentClass(int pIndex); }