예제 #1
0
    // -Static API-

    static public IWatchValue AddWatchValue(IWatchValue watchValue)
    {
        s_WatchValues.Add(watchValue);
        return(watchValue);
    }
예제 #2
0
 static public void RemoveWatchValue(IWatchValue watchValue)
 {
     s_WatchValues.Remove(watchValue);
 }
예제 #3
0
 protected override void Awake()
 {
     base.Awake();
     m_WatchValue = WatchData.AddWatchValue(new LabelWatchValue(() => { return("Player Slots: " + PlayerDataSlots.Count.ToString()); }));
 }