mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-16 07:14:09 +02:00
23 lines
414 B
Beef
23 lines
414 B
Beef
![]() |
#if false
|
||
|
|
||
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
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
|