2023-01-02 19:08:46 +03:00
|
|
|
|
using Gtk;
|
|
|
|
|
|
2025-01-19 19:35:29 +03:00
|
|
|
|
namespace FractalTreeGtk;
|
|
|
|
|
|
|
|
|
|
internal class Program
|
2023-01-02 19:08:46 +03:00
|
|
|
|
{
|
2025-01-19 19:35:29 +03:00
|
|
|
|
static void Main()
|
2023-01-02 19:08:46 +03:00
|
|
|
|
{
|
2025-01-19 19:35:29 +03:00
|
|
|
|
Application.Init();
|
2023-01-02 19:08:46 +03:00
|
|
|
|
|
2025-01-19 19:35:29 +03:00
|
|
|
|
_ = new CairoWindow("Fractal window");
|
|
|
|
|
Application.Run();
|
2023-01-02 19:08:46 +03:00
|
|
|
|
}
|
|
|
|
|
}
|