Exemple #1
0
 public void AddEntry(LogEntry.Callback call, T state, float floatParam)
 {
     this.Entries.Add(new LogEntry()
     {
         State = state, Call = call, FloatParam = floatParam
     });
 }
 public void AddEntry(LogEntry.Callback call, T state, float floatParam = -1.0f)
 {
     Entries.Add(new LogEntry {
         State      = state,
         Call       = call,
         FloatParam = floatParam
     });
 }
Exemple #3
0
 public void AddEntry(LogEntry.Callback call, T state)
 {
     this.AddEntry(call, state, -1.0f);
 }