BLSize

public struct BLSize : Equatable, Codable

Simple size struct to simplify the API. (BearLibTerminal-Swift uses this instead of CGSize to avoid a Core Graphics dependency, making Linux support possible.)

  • w

    Undocumented

    Declaration

    Swift

    public var w: BLInt
  • h

    Undocumented

    Declaration

    Swift

    public var h: BLInt
  • Declaration

    Swift

    public static func == (a: BLSize, b: BLSize) -> Bool
  • Undocumented

    Declaration

    Swift

    public init(w: BLInt, h: BLInt)