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

public class Damage : MonoBehaviour {

	public float DamageMin;
	public float DamageMax;

	public bool AOE;

	void Start () {
		
	}
	
	void Update () {
		
	}
}
