using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace bbiwarg.Recognition.Tracking { /// /// A object that can be identified via a unique ID. /// public class TrackableObject { /// /// the track id /// public int TrackID { get; private set; } /// /// Sets the object's track id. /// /// the track id public void setTracked(int id) { TrackID = id; } } }