summaryrefslogtreecommitdiff
path: root/src/script/api/script_date.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/script/api/script_date.hpp')
-rw-r--r--src/script/api/script_date.hpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/script/api/script_date.hpp b/src/script/api/script_date.hpp
index c841599d5..488e35eda 100644
--- a/src/script/api/script_date.hpp
+++ b/src/script/api/script_date.hpp
@@ -65,6 +65,14 @@ public:
* @return The date.
*/
static int32 GetDate(int32 year, int32 month, int32 day_of_month);
+
+ /**
+ * Get the time of the host system.
+ * @return The amount of seconds passed since 1 Jan 1970.
+ * @api -ai
+ * @note This uses the clock of the host system, which can skew or be set back. Use with caution.
+ */
+ static int32 GetSystemTime();
};
#endif /* SCRIPT_DATE_HPP */