mirror of
https://github.com/trudnai/Steve2.git
synced 2025-03-13 07:33:53 +00:00
17 lines
259 B
Swift
17 lines
259 B
Swift
|
//
|
||
|
// String.swift
|
||
|
// A2Mac
|
||
|
//
|
||
|
// Created by Tamas Rudnai on 11/13/22.
|
||
|
// Copyright © 2022 GameAlloy. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import Foundation
|
||
|
|
||
|
extension String {
|
||
|
func hexValue() -> UInt {
|
||
|
return UInt(lowercased(), radix: 16) ?? 0
|
||
|
}
|
||
|
}
|
||
|
|