tfullprofile.java
来自「老外写的一个超厉害的手机游戏 , j2me , 开源项目」· Java 代码 · 共 34 行
JAVA
34 行
// style: tabs, tabsize=4, style=ANSI
//+----------------------------------------------------------------------+
// Copyleft 2007. Andrew Denisov and Zahar Semenov. GNU GPL license vesion 2.
// Code made by Zahar Semenov
//+----------------------------------------------------------------------+
// Filename: TFullProfile.java
//+----------------------------------------------------------------------+
// Comment: Storage for profile ( username and password mostly )
//+----------------------------------------------------------------------+
package network;
//import java.util.Vector;
public class TFullProfile
{
public final static String CountriesNames[] = { "Russia", "Korea(South)", "Other"};
public final static String CountriesChars[] = { "RU", "KR", "AA"};
public TFullProfile()
{
}
public TFullProfile( String _Name, String _Pass, int _iCountry, String _sFullName, String _sFrom, String _sEmail, String _sText)
{
sName = _Name;
sPass = _Pass;
iCountry = _iCountry;
sFullName = _sFullName;
sFrom = _sFrom;
sEmail = _sEmail;
sText = _sText;
}
public String sName; // 褥
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?