Back to project page TheFirstMyth01.
The source code is released under:
MIT License
If you think the Android project TheFirstMyth01 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.game.data; // ww w . ja va2 s. com import java.util.List; public class BaseInfo { private static List<RoleData> rolelist; public static List<RoleData> getRolelist() { return rolelist; } public static void setRolelist(List<RoleData> rolelist) { BaseInfo.rolelist = rolelist; } }