Files
Erupe/server/channelserver/handlers_mutex.go
Houmgaor 7ea2660335 docs(stubs): annotate empty handlers and add unimplemented reference doc
Add // stub: unimplemented to 70 empty game-feature handlers and
// stub: reserved to 56 protocol-reserved slots in handlers_reserve.go,
making them discoverable via grep. Add docs/unimplemented.md listing all
unimplemented handlers grouped by subsystem with descriptions.
2026-03-19 10:57:09 +01:00

14 lines
515 B
Go

package channelserver
import "erupe-ce/network/mhfpacket"
func handleMsgSysCreateMutex(s *Session, p mhfpacket.MHFPacket) {} // stub: unimplemented
func handleMsgSysCreateOpenMutex(s *Session, p mhfpacket.MHFPacket) {} // stub: unimplemented
func handleMsgSysDeleteMutex(s *Session, p mhfpacket.MHFPacket) {} // stub: unimplemented
func handleMsgSysOpenMutex(s *Session, p mhfpacket.MHFPacket) {} // stub: unimplemented
func handleMsgSysCloseMutex(s *Session, p mhfpacket.MHFPacket) {} // stub: unimplemented