mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-07 10:47:19 -05:00
6db299b31d
* removed magic numbers from stream reader/writer and bitstream * formatting, removing a couple more magic numbers
14 lines
304 B
Go
14 lines
304 B
Go
package d2common
|
|
|
|
import "time"
|
|
|
|
const (
|
|
nanoseconds = 1000000000.0
|
|
)
|
|
|
|
// Now returns how many seconds have elapsed since Unix time (January 1, 1970 UTC)
|
|
func Now() float64 {
|
|
// Unix time in nanoseconds divided by how many nanoseconds in a second
|
|
return float64(time.Now().UnixNano()) / nanoseconds
|
|
}
|