예제 #1
0
파일: Item.cs 프로젝트: Ravenwolfe/xrunuo
 public void SetGridLocation( byte pos, Container parent )
 {
     if ( parent.IsFreePosition( pos ) )
         m_GridLocation = pos;
     else
         m_GridLocation = parent.GetNewPosition();
 }