mirror of
https://github.com/HaishinKit/HaishinKit.swift.git
synced 2026-05-07 20:12:28 +00:00
12 lines
231 B
Swift
12 lines
231 B
Swift
import Foundation
|
|
|
|
/// A singleton actor whose executor screen object rendering.
|
|
@globalActor
|
|
public actor ScreenActor {
|
|
/// The shared actor instance.
|
|
public static let shared = ScreenActor()
|
|
|
|
private init() {
|
|
}
|
|
}
|