summaryrefslogtreecommitdiff
path: root/ROUNDS/DoPlayerReload.cs
blob: 8faa4e6218278f07289c0356be1f24d57e22694e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using UnityEngine;

public class DoPlayerReload : MonoBehaviour
{
	private WeaponHandler wh;

	private void Start()
	{
		wh = GetComponentInParent<WeaponHandler>();
	}

	public void DoReload()
	{
		wh.DoReload();
	}
}