Trackable.cs 287 B

123456789101112131415161718
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class Trackable
  5. {
  6. public int trackableId;
  7. protected Trackable(int id)
  8. {
  9. this.trackableId = id;
  10. }
  11. public int GetTrackableId()
  12. {
  13. return trackableId;
  14. }
  15. }