This commit is contained in:
aozhiwei 2024-11-06 10:22:23 +08:00
parent 0e057bea69
commit b1ddb2107a
5 changed files with 70 additions and 0 deletions

View File

@ -0,0 +1,14 @@
package mt
import (
"f5"
"main/mtb"
)
type Friend struct {
mtb.Friend
}
type FriendTable struct {
f5.IdMetaTable[Friend]
}

View File

@ -0,0 +1,14 @@
package mt
import (
"f5"
"main/mtb"
)
type Item struct {
mtb.Item
}
type ItemTable struct {
f5.IdMetaTable[Item]
}

View File

@ -0,0 +1,14 @@
package mt
import (
"f5"
"main/mtb"
)
type Reward struct {
mtb.Reward
}
type RewardTable struct {
f5.IdMetaTable[Reward]
}

View File

@ -0,0 +1,14 @@
package mt
import (
"f5"
"main/mtb"
)
type Task struct {
mtb.Task
}
type TaskTable struct {
f5.IdMetaTable[Task]
}

View File

@ -0,0 +1,14 @@
package mt
import (
"f5"
"main/mtb"
)
type Global struct {
mtb.Global
}
type GlobalTable struct {
f5.IdMetaTable[Global]
}