13 lines
154 B
Go
13 lines
154 B
Go
package entity
|
|
|
|
type ObjectType struct {
|
|
ID string
|
|
Render Render
|
|
}
|
|
|
|
type Object struct {
|
|
ID string
|
|
Type ObjectType
|
|
Position Position
|
|
}
|