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