7 lines
128 B
C#
7 lines
128 B
C#
using System;
|
|
|
|
public interface IHUDOwner
|
|
{
|
|
public event Action<float> BoostUpdated;
|
|
public event Action<float> LifeUpdated;
|
|
} |