Mouse interaction

This commit is contained in:
Paul Chote
2010-03-14 17:49:59 +13:00
parent 287d5a0399
commit ca2630ffab
6 changed files with 57 additions and 5 deletions

View File

@@ -36,13 +36,13 @@ namespace OpenRA
{
// Hack around a bug in MiniYaml
c.Value.Value = c.Key;
widget.Children.Add( LoadWidget( c.Value ) );
widget.AddChild( LoadWidget( c.Value ) );
}
}
else
FieldLoader.LoadField( widget, child.Key, child.Value );
}
widget.Initialize();
return widget;
}