namespace BansheeGz.BGDatabase
{
    public class BGBoltEntityAbstractEventArgs
    {
        public readonly string entityId;
        public readonly int entityIndex;

        public BGBoltEntityAbstractEventArgs(string entityId, int entityIndex)
        {
            this.entityId = entityId;
            this.entityIndex = entityIndex;
        }
    }
}