コード例 #1
0
 public GameRolePlayCharacterInformations(int contextualId, EntityLook look, EntityDispositionInformations disposition, string name, HumanInformations humanoidInfo, int accountId, ActorAlignmentInformations alignmentInfos)
     : base(contextualId, look, disposition, name, humanoidInfo, accountId)
 {
     AlignmentInfos = alignmentInfos;
 }
コード例 #2
0
 public GameRolePlayHumanoidInformations(int contextualId, EntityLook look, EntityDispositionInformations disposition, string name, HumanInformations humanoidInfo, int accountId)
     : base(contextualId, look, disposition, name)
 {
     HumanoidInfo = humanoidInfo;
     AccountId = accountId;
 }
コード例 #3
0
 public GameRolePlayMutantInformations(int contextualId, EntityLook look, EntityDispositionInformations disposition, string name, HumanInformations humanoidInfo, int accountId, int monsterId, sbyte powerLevel)
     : base(contextualId, look, disposition, name, humanoidInfo, accountId)
 {
     MonsterId = monsterId;
     PowerLevel = powerLevel;
 }