summaryrefslogtreecommitdiff
path: root/sim.cpp
blob: 21acc8cf8549a6359e642882f595330020856e27 (plain) (blame)
1
2
3
4
5
6
7
8
9
#include <cstdint>
#include <vector>

#include "infra/sim.h"

namespace infra {
    std::vector<sim *> sim::sims;
    std::uint64_t sim::now = 0;
}