Example #1
0
    public string time;         // 시간 // System.DateTime.Now.ToString("hh:mm:ss");


    //public List<PlayerItemInfo> listPlayerItemInfo; // 인벤토리 아이템 정보

    public void setInfo(string saveName, int Hp, int Sp, int Exp, int level, Job.JOB job, string stageName, string stageSceneName, Vector3 pos, string date, string time)
    {
        this.saveName       = saveName;
        curHP               = Hp;
        curSP               = Sp;
        curExp              = Exp;
        this.level          = level;
        this.job            = job;
        this.stageName      = stageName;
        this.stageSceneName = stageSceneName;
        posX      = pos.x;
        posY      = pos.y;
        posZ      = pos.z;
        this.date = date;
        this.time = time;
    }
Example #2
0
 public Job getJobInfo(Job.JOB job)
 {
     return(listJob[(int)job]);
 }
Example #3
0
 public void SelectJob(Job.JOB job)
 {
     jobNewSelected = job;
 }
Example #4
0
 public Job getJobInfo(Job.JOB job) // 직업에 해당하는 정보를 반환
 {
     return(listJob[(int)job]);
 }