﻿using System.Collections;
using System.Collections.Generic;
using UnityEngine;

namespace Comm.Shoot
{
    public class ShootComm : Singleton<ShootComm>
    {
        private int animatorIndex = 1;
        public int AnimatorIndex { get { return animatorIndex; } set { animatorIndex = value; } }
    }
}
