Ported late skills to protobuf, added changed-messages
This commit is contained in:
parent
87c9b0e74a
commit
f6b283b3a1
14 changed files with 222 additions and 36 deletions
|
@ -9,6 +9,8 @@ import "GenusModel.proto";
|
|||
import "AkkusativModel.proto";
|
||||
import "DativModel.proto";
|
||||
import "PluralModel.proto";
|
||||
import "LateSkillsGenitivModel.proto";
|
||||
import "LateSkillsPassivModel.proto";
|
||||
|
||||
message DataModel
|
||||
{
|
||||
|
@ -19,4 +21,6 @@ message DataModel
|
|||
AkkusativModel Akkusativ = 5;
|
||||
DativModel Dativ = 6;
|
||||
PluralModel Plural = 7;
|
||||
LateSkillsGenitivModel LateSkillsGenitiv = 8;
|
||||
LateSkillsPassivModel LateSkillsPassiv = 9;
|
||||
}
|
||||
|
|
33
proto/LateSkillsGenitivModel.proto
Normal file
33
proto/LateSkillsGenitivModel.proto
Normal file
|
@ -0,0 +1,33 @@
|
|||
syntax = "proto3";
|
||||
|
||||
package ESGRAF48;
|
||||
|
||||
message LateSkillsGenitivModel
|
||||
{
|
||||
message PraepositionenModel
|
||||
{
|
||||
bool anstelle1 = 1;
|
||||
bool anstelle2 = 2;
|
||||
bool ausserhalb1 = 3;
|
||||
bool ausserhalb2 = 4;
|
||||
bool mithilfe1 = 5;
|
||||
bool mithilfe2 = 6;
|
||||
}
|
||||
|
||||
message AttributierungModel
|
||||
{
|
||||
bool Schuhe1 = 1;
|
||||
bool Schuhe2 = 2;
|
||||
bool Zauberstab1 = 3;
|
||||
bool Zauberstab2 = 4;
|
||||
bool Hut1 = 5;
|
||||
bool Hut2 = 6;
|
||||
bool Brille1 = 7;
|
||||
bool Brille2 = 8;
|
||||
bool Guertel1 = 9;
|
||||
bool Guertel2 = 10;
|
||||
}
|
||||
|
||||
PraepositionenModel Praepositionen = 1;
|
||||
AttributierungModel Attributierung = 2;
|
||||
}
|
17
proto/LateSkillsPassivModel.proto
Normal file
17
proto/LateSkillsPassivModel.proto
Normal file
|
@ -0,0 +1,17 @@
|
|||
syntax = "proto3";
|
||||
|
||||
package ESGRAF48;
|
||||
|
||||
message LateSkillsPassivModel
|
||||
{
|
||||
bool Elefant1 = 1;
|
||||
bool Elefant2 = 2;
|
||||
bool Pferde1 = 3;
|
||||
bool Pferde2 = 4;
|
||||
bool Baelle1 = 5;
|
||||
bool Baelle2 = 6;
|
||||
bool Ball1 = 7;
|
||||
bool Ball2 = 8;
|
||||
bool Fleisch1 = 9;
|
||||
bool Fleisch2 = 10;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue