summaryrefslogtreecommitdiff
path: root/GameCode/Holdable.cs
blob: c2329b56c59314a16034c7d247991cccdf08ba2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using UnityEngine;

public class Holdable : MonoBehaviour
{
	public Rigidbody2D rig;

	public CharacterData holder;

	private void Awake()
	{
		rig = GetComponent<Rigidbody2D>();
	}

	private void Start()
	{
	}

	public void SetTeamColors(PlayerSkin teamColor, Player player)
	{
		SetTeamColor.TeamColorThis(base.gameObject, teamColor);
	}
}