package live_logic import ( pbRoom "dcg/game/pb/room" "dcg/game/svc" ) type TestGameLogic struct { svcCtx *svc.ServiceContext *LiveGameLogic } func NewTestLiveGameLogic(svcCtx *svc.ServiceContext) *LiveGameLogic { resp := &TestGameLogic{ svcCtx: svcCtx, LiveGameLogic: NewLiveGameLogic(pbRoom.GameType_TEST, nil), } return resp.LiveGameLogic }