Exemplo n.º 1
0
 /// <summary>
 /// Mounts the entity
 /// </summary>
 /// <param name="mount">Mount</param>
 public void Mount(Mount mount)
 {
     this.mount = mount;
     this.mount.Ride(this);
 }
Exemplo n.º 2
0
 /// <summary>
 /// Mounts the entity
 /// </summary>
 /// <param name="mount">Mount</param>
 public void Mount(Mount mount)
 {
     this.mount = mount;
     this.mount.Ride(this);
 }
Exemplo n.º 3
0
 /// <summary>
 /// Dismounts the entity
 /// </summary>
 public void Dismount()
 {
     mount.DismountRider();
     mount = null;
 }
Exemplo n.º 4
0
 /// <summary>
 /// Dismounts the entity
 /// </summary>
 public void Dismount()
 {
     mount.DismountRider();
     mount = null;
 }