19 lines
274 B
C#
19 lines
274 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace Saltosion.OneWeapon {
|
|
public class HUDController : MonoBehaviour {
|
|
|
|
public Player Player;
|
|
|
|
void Start() {
|
|
|
|
}
|
|
|
|
void Update() {
|
|
|
|
}
|
|
}
|
|
}
|