#include <SFML/System/Export.h>
Go to the source code of this file.
Data Structures | |
struct | sfTime |
Represents a time value. More... | |
Functions | |
CSFML_SYSTEM_API float | sfTime_asSeconds (sfTime time) |
Return a time value as a number of seconds. | |
CSFML_SYSTEM_API sfInt32 | sfTime_asMilliseconds (sfTime time) |
Return a time value as a number of milliseconds. | |
CSFML_SYSTEM_API sfInt64 | sfTime_asMicroseconds (sfTime time) |
Return a time value as a number of microseconds. | |
CSFML_SYSTEM_API sfTime | sfSeconds (float amount) |
Construct a time value from a number of seconds. | |
CSFML_SYSTEM_API sfTime | sfMilliseconds (sfInt32 amount) |
Construct a time value from a number of milliseconds. | |
CSFML_SYSTEM_API sfTime | sfMicroseconds (sfInt64 amount) |
Construct a time value from a number of microseconds. | |
Variables | |
CSFML_SYSTEM_API sfTime | sfTime_Zero |
Predefined "zero" time value. | |
CSFML_SYSTEM_API sfTime sfMicroseconds | ( | sfInt64 | amount | ) |
Construct a time value from a number of microseconds.
amount | Number of microseconds |
CSFML_SYSTEM_API sfTime sfMilliseconds | ( | sfInt32 | amount | ) |
Construct a time value from a number of milliseconds.
amount | Number of milliseconds |
CSFML_SYSTEM_API sfTime sfSeconds | ( | float | amount | ) |
Construct a time value from a number of seconds.
amount | Number of seconds |
CSFML_SYSTEM_API sfInt64 sfTime_asMicroseconds | ( | sfTime | time | ) |
Return a time value as a number of microseconds.
time | Time value |
CSFML_SYSTEM_API sfInt32 sfTime_asMilliseconds | ( | sfTime | time | ) |
Return a time value as a number of milliseconds.
time | Time value |
CSFML_SYSTEM_API float sfTime_asSeconds | ( | sfTime | time | ) |
Return a time value as a number of seconds.
time | Time value |
CSFML_SYSTEM_API sfTime sfTime_Zero |