OnlineGames.cs 229 B

1234567891011
  1. using System;
  2. using System.Collections.Generic;
  3. namespace NarKampen.Assets.Scripts.Objects
  4. {
  5. [Serializable]
  6. public class OnlineGames
  7. {
  8. public List<OnlineGame> onlineGamesList = new List<OnlineGame>();
  9. }
  10. }