game/common/baseroom/base_test.go
2025-06-06 20:02:58 +08:00

15 lines
181 B
Go

package baseroom
import (
"testing"
)
func TestConst(t *testing.T) {
_ = SsWorking
_ = SsStopped
_ = SsWaitStop
_ = NewRoomMgr
_ = NewBaseRoom[*BaseSeat]
_ = NewBaseSeat
}