game/common/baseroom/base_test.go

15 lines
181 B
Go
Raw Permalink Normal View History

2025-06-06 20:02:58 +08:00
package baseroom
import (
"testing"
)
func TestConst(t *testing.T) {
_ = SsWorking
_ = SsStopped
_ = SsWaitStop
_ = NewRoomMgr
_ = NewBaseRoom[*BaseSeat]
_ = NewBaseSeat
}