mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-03 14:18:47 +00:00
update essence API header
This commit is contained in:
@@ -1,2 +1,18 @@
|
||||
package time
|
||||
IS_SUPPORTED :: false;
|
||||
|
||||
import "core:sys/es"
|
||||
|
||||
IS_SUPPORTED :: true;
|
||||
|
||||
now :: proc() -> Time {
|
||||
// TODO Replace once there's a proper time API.
|
||||
return Time{_nsec = i64(es.TimeStampMs() * 1e6)};
|
||||
}
|
||||
|
||||
sleep :: proc(d: Duration) {
|
||||
es.Sleep(u64(d/Millisecond));
|
||||
}
|
||||
|
||||
_tick_now :: proc() -> Tick {
|
||||
return Tick{_nsec = i64(es.TimeStampMs() * 1e6)};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user