#region File Description //----------------------------------------------------------------------------- // IIdentity.cs // // Microsoft XNA Community Game Platform // Copyright (C) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- #endregion #region Using Statements using System; using System.Collections.Generic; using System.Text; #endregion namespace RobotGameData.GameInterface { #region Interface /// /// his is an interface of inherited class which needs an identity number. /// public interface IIdentity { int Id { get; } } #endregion }