package oxbow

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Seat.OpSource

type t =
  1. | Move of {
    1. window : Types.Window.t;
    2. from_tiled : bool;
    3. start_x : int32;
    4. start_y : int32;
    5. mutable dx : int32;
    6. mutable dy : int32;
    7. mutable release : bool;
    }
  2. | Resize of {
    1. window : Types.Window.t;
    2. start_x : int32;
    3. start_y : int32;
    4. start_w : int32;
    5. start_h : int32;
    6. edges : int32;
    7. mutable dx : int32;
    8. mutable dy : int32;
    9. mutable release : bool;
    }