예제 #1
0
 /// <summary>
 /// Create a new game entity with a unique id
 /// </summary>
 public GameEntity()
 {
     Id = CtfId.NewId();
 }
예제 #2
0
파일: Team.cs 프로젝트: sharpstringer/AiCtf
 /// <summary>
 /// Initialise this team with a unique id
 /// </summary>
 public Team()
 {
     Id = CtfId.NewId();
 }