Example #1
0
 /// <summary>
 ///     Builds a new handler for the given <see cref="MenuSeparator" />.
 /// </summary>
 /// <param name="component">The <see cref="MenuSeparator" /> where this handler is responsible for.</param>
 /// <returns>The handler</returns>
 public ADrawable<MenuSeparator> BuildSeparatorHandler(MenuSeparator component)
 {
     return new LightSeparator2(component);
 }
Example #2
0
 /// <summary>
 ///     Initializes a new instance of the <see cref="LightSeparator" /> class.
 /// </summary>
 /// <param name="component">
 ///     The menu component
 /// </param>
 public LightSeparator2(MenuSeparator component)
     : base(component)
 {
 }
Example #3
0
 /// <summary>
 ///     Builds a new handler for the given <see cref="MenuSeparator" />.
 /// </summary>
 /// <param name="component">The <see cref="MenuSeparator" /> where this handler is responsible for.</param>
 /// <returns>The handler</returns>
 public ADrawable<MenuSeparator> BuildSeparatorHandler(MenuSeparator component)
 {
     return new TechSeparator(component);
 }
 /// <summary>
 ///     Initializes a new instance of the <see cref="BlueSeparator" /> class.
 /// </summary>
 /// <param name="component">
 ///     The menu component
 /// </param>
 public BlueSeparator2(MenuSeparator component)
     : base(component)
 {
 }