1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-14 14:24:10 +02:00
Beef/IDE/src/Popup.bf

23 lines
406 B
Beef
Raw Normal View History

2019-08-23 11:56:54 -07:00
#if false
using System;
using System.Collections;
2019-08-23 11:56:54 -07:00
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