17 lines
578 B
C#
17 lines
578 B
C#
|
using System;
|
||
|
namespace MagicPigGames
|
||
|
{
|
||
|
[Serializable]
|
||
|
public class HorizontalProgressBar : ProgressBar
|
||
|
{
|
||
|
/*
|
||
|
* Note: The default ProgressBar class is actually a horizontal progress bar. I'm including this as
|
||
|
* a separate class to make it more clear that this is the "Horizontal" one, since there will be other
|
||
|
* ones for Vertical etc.
|
||
|
*
|
||
|
* Perhaps in the future there will be additional updates to Progress Bar as well,
|
||
|
* though right now, it really is just a horizontal progress bar.
|
||
|
*/
|
||
|
}
|
||
|
}
|