9 lines
200 B
TypeScript
9 lines
200 B
TypeScript
import type { GameObject } from '../..';
|
|
import type { GetObjectsOptions } from '../commands/RegionCommands';
|
|
|
|
export interface IResolveJob
|
|
{
|
|
object: GameObject,
|
|
options: GetObjectsOptions,
|
|
}
|