Newer
Older
HardPoint-Project-Abertay-University-Unity3D / Assets / Scripts / Interfaces / IUpdatable.cs
@Rackday Rackday on 18 Aug 133 bytes Project Added
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public interface IUpdatable
{
    void Updating();
}