// Code generated by sqlc. DO NOT EDIT. // versions: // sqlc v1.30.0 package db type Exit struct { ID int64 `db:"id" json:"id"` Origin int64 `db:"origin" json:"origin"` Dest int64 `db:"dest" json:"dest"` } type Inventory struct { ID int64 `db:"id" json:"id"` } type Location struct { ID int64 `db:"id" json:"id"` X int64 `db:"x" json:"x"` Y int64 `db:"y" json:"y"` Z int64 `db:"z" json:"z"` World int64 `db:"world" json:"world"` Observable int64 `db:"observable" json:"observable"` } type Observable struct { ID int64 `db:"id" json:"id"` Name string `db:"name" json:"name"` Description string `db:"description" json:"description"` } type Pool struct { ID int64 `db:"id" json:"id"` Type int64 `db:"type" json:"type"` }