(string _skin, IntCoord _coord, Align _align)
| 112 | #region CreateWidget |
| 113 | |
| 114 | public T CreateWidget<T>(string _skin, IntCoord _coord, Align _align) where T : class |
| 115 | { |
| 116 | T type = System.Activator.CreateInstance<T>(); |
| 117 | BaseWidget widget = type as BaseWidget; |
| 118 | widget.CreateWidgetImpl(this, WidgetStyle.Child, _skin, _coord, _align, "", ""); |
| 119 | return type; |
| 120 | } |
| 121 | |
| 122 | public T CreateWidget<T>(string _skin, IntCoord _coord, Align _align, string _name) where T : class |
| 123 | { |
nothing calls this directly
no test coverage detected