Server.Mobiles.EtherealMount.Dismount C# (CSharp) 메소드

Dismount() 공개 정적인 메소드

public static Dismount ( Mobile m ) : void
m Mobile
리턴 void
		public static void Dismount( Mobile m )
		{
			IMount mount = m.Mount;

			if( mount != null )
				mount.Rider = null;
		}