コード例 #1
0
 public SoulPosition(SoulPosition soulToCopy, Position _posTarget = null) : base(soulToCopy)
 {
     if (_posTarget != null)
     {
         //If a Target was provided, then we'll use that
         posTarget = _posTarget;
     }
     else
     {
         //Otherwise, just copy from the other object
         posTarget = soulToCopy.posTarget;
     }
 }
コード例 #2
0
 public ExecSoulPosition(ExecSoulPosition other) : base(other)
 {
     soulTarget = other.soulTarget;
 }
コード例 #3
0
 public ExecSoulPosition(Chr _chrSource, SoulPosition _soulTarget) : base(_chrSource)
 {
     soulTarget = _soulTarget;
 }
コード例 #4
0
 public ExecRemoveSoulPosition(Chr _chrSource, SoulPosition _soulTarget) : base(_chrSource, _soulTarget)
 {
 }
コード例 #5
0
 public ExecApplySoulPosition(ExecApplySoulPosition other) : base(other)
 {
     soulToApply = other.soulToApply;
 }
コード例 #6
0
 public ExecApplySoulPosition(Chr _chrSource, Position _posTarget, SoulPosition _soulToApply) : base(_chrSource, _posTarget)
 {
     soulToApply = _soulToApply;
 }