11 lines
278 B
C#
11 lines
278 B
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace ET.Server
|
|
{
|
|
[ComponentOf(typeof(Scene))]
|
|
public class PlayerComponent : Entity, IAwake, IDestroy
|
|
{
|
|
public Dictionary<string, EntityRef<Player>> dictionary = new Dictionary<string, EntityRef<Player>>();
|
|
}
|
|
} |