/* * FancyScrollView (https://github.com/setchi/FancyScrollView) * Copyright (c) 2020 setchi * Licensed under MIT (https://github.com/setchi/FancyScrollView/blob/master/LICENSE) */ using UnityEngine; namespace FancyScrollView.FocusOn { class ItemData { public string Message { get; } public Sprite Sprite { get; } public string Name { get; } public string TextId { get; } public int LanguageType { get; } public ItemData(string message) { Message = message; } public ItemData(string name, Sprite sprite, string textId,int languageType) { Sprite = sprite; Name = name; TextId = textId; LanguageType = languageType; } } }