AnotherDummy.cs 358 B

12345678910111213141516171819
  1. using UnityEngine;
  2. namespace Terra.Arbitrator
  3. {
  4. public class AnotherDummy : MonoBehaviour
  5. {
  6. // Start is called once before the first execution of Update after the MonoBehaviour is created
  7. void Start()
  8. {
  9. }
  10. // Update is called once per frame
  11. void Update()
  12. {
  13. }
  14. }
  15. }