Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
N
Neos Protobuf
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
MyCard
Neos Protobuf
Commits
dcf16e36
Commit
dcf16e36
authored
Dec 03, 2022
by
Chunchi Che
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'feat/hint' into 'main'
add MsgHint See merge request
!7
parents
2006e72d
0a09a9ee
Pipeline
#18339
passed with stage
in 15 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
0 deletions
+17
-0
idl/ocgcore.proto
idl/ocgcore.proto
+17
-0
No files found.
idl/ocgcore.proto
View file @
dcf16e36
...
...
@@ -224,11 +224,28 @@ message StocGameMessage {
PhaseType
phase_type
=
1
;
}
// 操作提示
message
MsgHint
{
enum
HintType
{
UNKNOWN
=
0
;
SELECT_LOCATION
=
1
;
// 位置选择
SELECT_EFFECT
=
2
;
// 效果选择
SELECT_RACE
=
3
;
// 种族选择
SELECT_ATTRIBUTE
=
4
;
// 属性选择
SELECT_NUMBER
=
5
;
// 数字选择
SELECT_REGION
=
6
;
// 区域选择
}
HintType
hint_type
=
1
;
// 提示类型
int32
hint_data
=
2
;
// 提示数据
}
oneof
gameMsg
{
MsgStart
start
=
1
;
MsgDraw
draw
=
2
;
MsgNewTurn
new_turn
=
3
;
MsgNewPhase
new_phase
=
4
;
MsgHint
hint
=
5
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment