[Удаленно] Flash developer - social games startup
Код AS3:
public class JediJob extends GameDevJob implements IRemoteJob {
public var company:ICompany = new XenaoGames();
public var url:String = "http://xenaogames.com/jobs_as_developer.html";
public var email:String = "jobs@xenaogames.com";
public function apply():IGame {
var currentGame:IGame = new DoomForge();
currentGame.mmorgp = true;
currentGame.engine3d = Engine.ALTERNATIVA_3D;
currentGame.protocols = ["xml", "json", "amf3"];
currentGame.platforms = ["facebook", "kongregate", "ownSite"];
return currentGame;
}
public function isAvailable(skills:Skills):Boolean {
var as3Skill:ISkill = skills.getSkill("as3");
return as3Skill.oop && as3Skill.years >= 3
&& as3Skill.level >= DevLevel.MIDDLE;
}
public function getSalary():uint {
return company.getInterview().result + company.getBonus();
}
}
|