Exemplo n.º 1
0
        public override void render(Bitmap target)
        {
            string str = "You found the " + item.name + "!";
            target.scaleDraw(Art.items, 3, target.width / 2 - 8 * 3, 2, item.icon * 16, 0, 16, 16, Art.GetColor(item.color));
            target.draw(str, (target.width - str.Length * 6) / 2 + 2, 60 - 10, Art.GetColor(0xffff80));

            str = item.description;
            target.draw(str, (target.width - str.Length * 6) / 2 + 2, 60, Art.GetColor(0xa0a0a0));

            if (tickDelay == 0) target.draw("-> Continue", 40, target.height - 40, Art.GetColor(0xffff80));
        }