123456789101112131415161718192021 |
- package com.yyrh.constant;
- public class Constants {
- public static final String UPLOADTYPE_CREATEROLE = "UPLOADTYPE_CREATEROLE"; //创建角色
- public static final String UPLOADTYPE_ENTERGAME = "UPLOADTYPE_ENTERGAME";
- public static final String UPLOADTYPE_LEVELUP = "UPLOADTYPE_LEVELUP";
- public static final String SP_KEY = "yyrh";
- public static final String LOGIN = "LOGIN";
- public static final String LOGOUT = "LOGOUT";
- public static final long CLICK_INTERVAL = 2000L;
- }
|