Exemplo n.º 1
0
 public MessageWindow(Vector2 minSize, bool draggable, int fontSize)
 {
     this.fontSize  = fontSize;
     this.minSize   = minSize;
     Size           = minSize;
     this.draggable = draggable;
     Id             = WindowIdManager.Create();
 }
Exemplo n.º 2
0
        //===コード=============================================================================

        public Node(Rect rect, NodeColor color)
        {
            id         = (int)WindowIdManager.Create();
            this.rect  = rect;
            this.color = color;
        }