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 @@ -433,12 +433,4 @@ public T Get<T>(string id) where T : Widget
433
433
434
434
public Widget Get ( string id ) { return Get < Widget > ( id ) ; }
435
435
}
436
-
437
- public class WidgetArgs : Dictionary < string , object >
438
- {
439
- public WidgetArgs ( ) { }
440
- public WidgetArgs ( Dictionary < string , object > args )
441
- : base ( args ) { }
442
- public void Add ( string key , Action val ) { base . Add ( key , val ) ; }
443
- }
444
436
}
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