Add Simple Documentation

This commit is contained in:
Marty Oehme 2018-08-25 16:41:11 +02:00
parent c3f0881454
commit 774e9e3782
2 changed files with 18 additions and 1 deletions

View file

@ -6,6 +6,12 @@ class ConfigurationService {
bool showGrid;
int _simSpeed;
/// Simulation Speed
///
/// Sets the number of updates the simulation takes per second. Can range from
/// 1 to arbitrarily high numbers (though setting it too high can potentially
/// make the app brittle).
int get simSpeed => _simSpeed;
void set simSpeed(int val) {
_simSpeed = val;