Stride Reference Manual  1.0
SimulatorStatus.h
Go to the documentation of this file.
1 #pragma once
2 
3 namespace stride {
4 
6  SimulatorStatus(int _infected, int _adopted) : infected(_infected), adopted(_adopted) {}
7 
8  int infected;
9  int adopted;
10 };
11 
12 }
Time Dependent Person DataType.
Definition: NoBehaviour.h:17
SimulatorStatus(int _infected, int _adopted)