示例#1
0
        public TableBrush getTableBrush()
        {
            TableBrush ret = null;

            if ((this.ground != null) && (ground.getTableBrush() != null))
            {
                ret = ground.getTableBrush();
            }

            foreach (Item it in Items)
            {
                if (it.getTableBrush() != null)
                {
                    ret = it.getTableBrush();
                }
            }
            return(ret);
        }
示例#2
0
 public void tableize(GameMap map)
 {
     TableBrush.doTables(map, this);
 }