| 12345678910111213141516171819202122232425262728293031323334 |
- /*
- * 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;
- }
- }
- }
|