Example #1
0
 public ToMonsterMovement(EntityWithDirection entity, Monster target)
 {
     Target = target;
     EntityWithDirection = entity;
 }
Example #2
0
 public Rotation(EntityWithDirection entity, float defaultAngle = 0)
 {
     EntityWithDirection = entity;
     DefaultAngle = defaultAngle;
 }
Example #3
0
 public StraightMovement(EntityWithDirection entity)
 {
     EntityWithDirection = entity;
 }
Example #4
0
 public CheckPointMovement(EntityWithDirection entity, LinkedListNode<Vector2> checkPoints)
 {
     EntityWithDirection = entity;
     CheckPoints = checkPoints;
 }