示例#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();
 }