CTT/Server/Model/Game/Entity/Map/MapCoinComponent.cs

13 lines
264 B
C#

using System;
using System.Collections.Generic;
namespace ET
{
public class MapCoinComponent:Entity
{
public Dictionary<int, Unit> coinMonsterMapDic = new();
public static MapCoinComponent instance;
public long timerId;
}
}