mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 20:42:21 +02:00
23 lines
No EOL
406 B
Beef
23 lines
No EOL
406 B
Beef
#if false
|
|
|
|
using System;
|
|
using System.Collections;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Beefy.widgets;
|
|
using Beefy.gfx;
|
|
|
|
namespace IDE
|
|
{
|
|
public class Popup : Widget
|
|
{
|
|
public override void Draw(Graphics g)
|
|
{
|
|
base.Draw(g);
|
|
using (g.PushColor(0xFFFF8080))
|
|
g.FillRect(0, 0, mWidth - 20, mHeight - 20);
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif |