aboutsummaryrefslogtreecommitdiff
path: root/src/server/shared/Utilities/EventMap.h
AgeCommit message (Collapse)Author
2015-08-21Core/Build: Merge common library and move database out of sharedStormBytePP
2015-07-22Fix non pch build.Gacko
2015-07-22Core/Utilities: Add std::chrono::duration overloads to EventMap.Naios
* makes it possible to write: ```c++ events.ScheduleEvent(1, Seconds(10)); // ... or ... events.ScheduleEvent(2, Minutes(1) + Seconds(20)); // ... or with C++14 support: events.ScheduleEvent(2, 45s); ```
2015-07-21Core/Utilities: Move EventMap into its own source file.Naios
* Move implementation details to .cpp.