Add Simple Documentation
This commit is contained in:
parent
c3f0881454
commit
774e9e3782
2 changed files with 18 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue