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

[System.Serializable]
public struct DamageInfo
{
    public int amount;
    public GameObject source;
    public GameObject owner;
}
