Skip to content

Commit 119957e

Browse files
committed
Fix preprocess and postprocess capitalization
1 parent f9c18d8 commit 119957e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

addons/GodotRollbackNetcodeMono/Interfaces.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ public interface INetworkProcess : INetworkSync
1616

1717
public interface INetworkPreProcess : INetworkSync
1818
{
19-
void _NetworkPreProcess(GDDictionary input);
19+
void _NetworkPreprocess(GDDictionary input);
2020
}
2121

2222
public interface INetworkPostProcess : INetworkSync
2323
{
24-
void _NetworkPostProcess(GDDictionary input);
24+
void _NetworkPostprocess(GDDictionary input);
2525
}
2626

2727
public interface IInterpolateState : INetworkSync

0 commit comments

Comments
 (0)