Allow [Change] to be combined with [ConVar.*] the same way as [Net], e.g:
```csharp
[ConVar.Replicated( "my_variable" ), Change]
public static float MyVariable { get; set; } = 100.0f;
public static void OnMyVariableChanged( float oldValue, float newValue ) { }
```