2025-07-04 00:27:03 +08:00
|
|
|
|
using System.Collections;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
using FairyGUI;
|
|
|
|
|
|
|
|
|
|
|
|
public static class EmojiDitc
|
|
|
|
|
|
{
|
|
|
|
|
|
public static Dictionary<uint, FairyGUI.Emoji> EmojiesDitc = new Dictionary<uint, Emoji>();
|
|
|
|
|
|
|
|
|
|
|
|
public static void AddEmoji(uint code, string emoji)
|
|
|
|
|
|
{
|
2025-07-22 20:00:07 +08:00
|
|
|
|
//Debug.Log($"add emoji code={code} emoji={emoji}");
|
|
|
|
|
|
EmojiesDitc.Add(code, new Emoji(emoji, 36 , 36));
|
2025-07-04 00:27:03 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|