ray-lab/packages/renderer-virtual/source/command/RenderCommand.ts

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 };