Exemplo n.º 1
0
 public MoveToPostionMobState(Vector2 position, Mob mob)
 {
     this.position = position;
     this.mob = mob;
 }
Exemplo n.º 2
0
 public MoveToGameObjectMobState(GameObject gameObject, Mob mob)
 {
     this.gameObject = gameObject;
     this.mob = mob;
 }
Exemplo n.º 3
0
 public IdleMobState(int lengthTime, Mob mob)
 {
     this.lengthTime = lengthTime;
 }
Exemplo n.º 4
0
 public void AttackMob(Mob mob)
 {
     mob.TakeDamage((int)GetAttackDamage());
 }
Exemplo n.º 5
0
 private void InteractWithObject(Mob mob)
 {
     interactionOffCooldown = DateTime.Now.AddMilliseconds(interactionCooldown); //<--- this allows the interaction to define the cooldown, ie chopping may take longer than attacking
     AttackMob(mob);
     //base.Interact(tree);
     //Console.WriteLine("Toon chopped");
        // tree.GotChopped(this);
 }