IIdentity.cs 689 B

1234567891011121314151617181920212223242526272829
  1. #region File Description
  2. //-----------------------------------------------------------------------------
  3. // IIdentity.cs
  4. //
  5. // Microsoft XNA Community Game Platform
  6. // Copyright (C) Microsoft Corporation. All rights reserved.
  7. //-----------------------------------------------------------------------------
  8. #endregion
  9. #region Using Statements
  10. using System;
  11. using System.Collections.Generic;
  12. using System.Text;
  13. #endregion
  14. namespace RobotGameData.GameInterface
  15. {
  16. #region Interface
  17. /// <summary>
  18. /// his is an interface of inherited class which needs an identity number.
  19. /// </summary>
  20. public interface IIdentity
  21. {
  22. int Id { get; }
  23. }
  24. #endregion
  25. }