00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00024
00026
00028 #include <SFML/System/Sleep.hpp>
00029 #include <SFML/System/Platform.hpp>
00030
00031
00032 namespace sf
00033 {
00037 void Sleep(float Duration)
00038 {
00039 if (Duration >= 0)
00040 priv::Platform::Sleep(Duration);
00041 }
00042
00043 }