18 lines
383 B
C#
18 lines
383 B
C#
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Text;
|
||
|
|
||
|
namespace Nuclex.Support.Tracking {
|
||
|
/*
|
||
|
public abstract class ProgressionTracker {
|
||
|
|
||
|
public void Track() {}
|
||
|
|
||
|
protected virtual void OnStartTracking();
|
||
|
protected virtual void OnEndTracking();
|
||
|
protected virtual void OnProgressUpdated();
|
||
|
|
||
|
}
|
||
|
*/
|
||
|
} // namespace Nuclex.Support.Tracking
|