| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- //
- // Copyright 2026 Aarav Ravindra Kharade
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- //
- @_silgen_name("ArkFontRobotoBold_data") public var ArkFontRobotoBold_data_sym: UInt8
- @_silgen_name("ArkFontRobotoBold_data2x") public var ArkFontRobotoBold_data2x_sym: UInt8
- @_silgen_name("ArkFontRobotoBold_data3x") public var ArkFontRobotoBold_data3x_sym: UInt8
- @_silgen_name("ArkFontRobotoBold_data4x") public var ArkFontRobotoBold_data4x_sym: UInt8
- @_silgen_name("ArkFontRobotoBold_data6x") public var ArkFontRobotoBold_data6x_sym: UInt8
- public struct ArkFontRobotoBold {
- public static let charWidth = 32
- public static let charHeight = 36
- public static let charWidth2x = 64
- public static let charHeight2x = 72
- public static let charWidth3x = 96
- public static let charHeight3x = 108
- public static let charWidth4x = 128
- public static let charHeight4x = 144
- public static let charWidth6x = 192
- public static let charHeight6x = 216
- public static var data: UnsafePointer<UInt8> {
- return withUnsafePointer(to: &ArkFontRobotoBold_data_sym) { $0 }
- }
- public static var data2x: UnsafePointer<UInt8> {
- return withUnsafePointer(to: &ArkFontRobotoBold_data2x_sym) { $0 }
- }
- public static var data3x: UnsafePointer<UInt8> {
- return withUnsafePointer(to: &ArkFontRobotoBold_data3x_sym) { $0 }
- }
- public static var data4x: UnsafePointer<UInt8> {
- return withUnsafePointer(to: &ArkFontRobotoBold_data4x_sym) { $0 }
- }
- public static var data6x: UnsafePointer<UInt8> {
- return withUnsafePointer(to: &ArkFontRobotoBold_data6x_sym) { $0 }
- }
- }
|