mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-01 04:10:07 +00:00
8 lines
231 B
Odin
8 lines
231 B
Odin
package objc_Foundation
|
|
|
|
@(objc_class="NSDate")
|
|
Date :: struct {using _: Copying(Date)}
|
|
|
|
Date_dateWithTimeIntervalSinceNow :: proc(secs: TimeInterval) -> ^Date {
|
|
return msgSend(^Date, Date, "dateWithTimeIntervalSinceNow:", secs)
|
|
} |