This commit is contained in:
vis2k 2021-08-07 19:20:11 +08:00
parent 0fdb39fa1c
commit 8673471cf1

View File

@ -16,8 +16,8 @@ struct TwoArgMethodMessage : NetworkMessage
public int someValue;
// Weaver should ignore these methods because they have two args
public void Serialize(NetworkWriter writer, int AnotherValue) { /* method with 2 args */ }
public void Deserialize(NetworkReader reader, int AnotherValue) { /* method with 2 args */ }
public void Serialize(NetworkWriter writer, int AnotherValue) {}
public void Deserialize(NetworkReader reader, int AnotherValue) {}
}
public class OverloadMethodTest