zxl
/
CTT
forked from Cal/CTT
1
0
Fork 0
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;
}
}