13 lines
264 B
C#
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;
|
|||
|
}
|
|||
|
}
|