12 lines
260 B
TypeScript
12 lines
260 B
TypeScript
import type { Command } from "./Command";
|
|
import type { CommandType } from "./CommandType";
|
|
|
|
/**
|
|
* Rendering command are used to execute gl programs.
|
|
*/
|
|
interface RenderCommand extends Command {
|
|
|
|
type: CommandType.Render
|
|
}
|
|
|
|
export type { RenderCommand }; |