mirror of
https://github.com/MirrorNetworking/Mirror.git
synced 2024-11-18 02:50:32 +00:00
Remove redundant initializations
This commit is contained in:
parent
277f18280e
commit
738baf2cad
@ -7,10 +7,10 @@ namespace Mirror
|
||||
public class ExponentialMovingAverage
|
||||
{
|
||||
float alpha;
|
||||
bool initialized = false;
|
||||
bool initialized;
|
||||
|
||||
double _value = 0;
|
||||
double _var = 0;
|
||||
double _value;
|
||||
double _var;
|
||||
|
||||
public ExponentialMovingAverage(int n)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user