using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MultiTheftAuto.Utils
{
///
/// Contains an Identity property.
///
public interface IIdentifyable
{
///
/// Gets the Identity of this instance.
///
UInt32 userdata
{
get;
}
}
}