File tree Expand file tree Collapse file tree 2 files changed +24
-8
lines changed Expand file tree Collapse file tree 2 files changed +24
-8
lines changed Original file line number Diff line number Diff line change @@ -431,12 +431,4 @@ public T Get<T>(string id) where T : Widget
431
431
432
432
public Widget Get ( string id ) { return Get < Widget > ( id ) ; }
433
433
}
434
-
435
- public class WidgetArgs : Dictionary < string , object >
436
- {
437
- public WidgetArgs ( ) { }
438
- public WidgetArgs ( Dictionary < string , object > args )
439
- : base ( args ) { }
440
- public void Add ( string key , Action val ) { base . Add ( key , val ) ; }
441
- }
442
434
}
Original file line number Diff line number Diff line change
1
+ #region Copyright & License Information
2
+ /*
3
+ * Copyright (c) The OpenRA Developers and Contributors
4
+ * This file is part of OpenRA, which is free software. It is made
5
+ * available to you under the terms of the GNU General Public License
6
+ * as published by the Free Software Foundation, either version 3 of
7
+ * the License, or (at your option) any later version. For more
8
+ * information, see COPYING.
9
+ */
10
+ #endregion
11
+
12
+ using System ;
13
+ using System . Collections . Generic ;
14
+
15
+ namespace OpenRA . Widgets
16
+ {
17
+ public class WidgetArgs : Dictionary < string , object >
18
+ {
19
+ public WidgetArgs ( ) { }
20
+ public WidgetArgs ( Dictionary < string , object > args )
21
+ : base ( args ) { }
22
+ public void Add ( string key , Action val ) { base . Add ( key , val ) ; }
23
+ }
24
+ }
You can’t perform that action at this time.
0 commit comments