Ejemplo n.º 1
0
 public TutorialScrollItem(GUIStyle icon, GUIStyle headlineStyle, GUIStyle buttonStyle, string headline, MainMenu.TUTORIALS tutorial, MainMenu mainMenu)
 {
     this.icon          = icon;
     this.headlineStyle = headlineStyle;
     this.buttonStyle   = buttonStyle;
     this.headline      = headline;
     this.tutorial      = tutorial;
     this.mainMenu      = mainMenu;
 }
Ejemplo n.º 2
0
 public TutorialScrollItem(GUIStyle icon, GUIStyle headlineStyle, GUIStyle descriptionStyle, string headline, string description, MainMenu.TUTORIALS tutorial, MainMenu mainMenu)
 {
     this.icon = icon;
     this.headlineStyle = headlineStyle;
     this.descriptionStyle = descriptionStyle;
     this.headline = headline;
     this.description = description;
     this.tutorial = tutorial;
     this.mainMenu = mainMenu;
 }