diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2018-12-20 11:31:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-20 11:31:16 +0100 |
commit | a8faa5504279f867adb6f50f768d3cf00594dc4f (patch) | |
tree | f4751774263c4b2dc184044436539274ce3504a1 /core/os/os.cpp | |
parent | b3f6e54cc61086fc3a3d2af170a86ea6a6eebf73 (diff) | |
parent | 84d060c768c10145374d48ebd2b3f00430c73638 (diff) | |
download | redot-engine-a8faa5504279f867adb6f50f768d3cf00594dc4f.tar.gz |
Merge pull request #24485 from volzhs/system-time-ms
Added OS.get_system_time_msecs()
Diffstat (limited to 'core/os/os.cpp')
-rw-r--r-- | core/os/os.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/os/os.cpp b/core/os/os.cpp index 7547b6a042..ea60a03373 100644 --- a/core/os/os.cpp +++ b/core/os/os.cpp @@ -61,6 +61,9 @@ uint64_t OS::get_unix_time() const { uint64_t OS::get_system_time_secs() const { return 0; } +uint64_t OS::get_system_time_msecs() const { + return 0; +} void OS::debug_break(){ // something |