⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sculpt.java

📁 声色幻想webgame 多人联网webgame-javaRPG游戏 实现 买东西 仓库 聊天 打怪 交易 功能! 1.配置java环境
💻 JAVA
字号:
/**
 * @(#)Sculpt.java
 * 
 * @author soda E-mail:junaisy@163.com
 * @version 1.0
 * <br>Program Name: FlashNetGame
 * <br>Date: 2007-4-18
 */
package org.game.model;

public class Sculpt
{
	private int sculptId;
	private String sculptName;
	private int sculptType;

	
	public Sculpt() {

	}
	

	public Sculpt(int sculptId, String sculptName, int sculptType) {
		this.sculptId = sculptId;
		this.sculptName = sculptName;
		this.sculptType = sculptType;
	}


	public void setSculptId(int sculptId) 
	{
		this.sculptId = sculptId; 
	}

	public void setSculptName(String sculptName) 
	{
		this.sculptName = sculptName; 
	}

	public void setSculptType(int sculptType) 
	{
		this.sculptType = sculptType; 
	}

	public int getSculptId() 
	{
		return (this.sculptId); 
	}

	public String getSculptName() 
	{
		return (this.sculptName); 
	}

	public int getSculptType()
	{
		return (this.sculptType);
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -