8 lines
161 B
C#
Raw Normal View History

2022-01-14 22:46:01 -08:00
namespace QSB.Utility.VariableSync
2021-11-26 17:36:14 +00:00
{
2022-01-14 22:46:01 -08:00
public abstract class BaseVariableSyncer : QSBNetworkBehaviour
2022-01-14 18:15:48 -08:00
{
protected override float SendInterval => 0.1f;
2022-01-14 18:15:48 -08:00
}
2021-11-26 17:36:14 +00:00
}