summaryrefslogtreecommitdiffstats
path: root/src/Bindings/LuaFunctions.h
blob: be2669012e1c5c34feab7a33b76574038c85a1f8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#include "Logger.h"
#include <time.h>
// tolua_begin

inline unsigned int GetTime()
{
	// NB: For caveats, please see https://stackoverflow.com/a/14505248
	return static_cast<unsigned int>(std::chrono::seconds(time(0)).count());
}

// tolua_end