예제 #1
0
 public TreasureMapEntry(TreasureMapEntry.TreasureMapID enMapID, Level.ZoneEnum enZone, Vector2 v2BuriedPos, Trophies.TrophyReward xReward, FlagCodex.FlagID enFlag)
 {
     this.enMapID = enMapID;
     this.enFlag = enFlag;
     this.v2BuriedPos = v2BuriedPos;
     this.xReward = xReward;
     this.enZone = enZone;
 }
예제 #2
0
파일: Trophies.cs 프로젝트: ancientgods/SoG
 public Trophy(Trophies.TrophyTypes enType, string sFullName, string sDescription, Texture2D txIcon, Trophies.TrophyReward xReward)
 {
     this.enType = enType;
     this.sFullName = sFullName;
     this.sDescription = sDescription;
     this.txIcon = txIcon;
     this.xReward = xReward;
 }