BloodAndGore/Assets/Scripts/HUDController.cs

19 lines
274 B
C#
Raw Normal View History

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Saltosion.OneWeapon {
public class HUDController : MonoBehaviour {
public Player Player;
void Start() {
}
void Update() {
}
}
}