Skip to content

Commit

Permalink
Update IRenderer.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
HypnosNova authored Feb 18, 2024
1 parent 6bd7ff4 commit 1bcef99
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/systems/render/IRenderer.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { IEntity } from "@valeera/x";
import type { Entity } from "@valeera/x";

export interface IRenderer {
renderTypes: string | string[];
render(entity: IEntity, ...args: any[]): any; // 处理渲染逻辑
render(entity: Entity, ...args: any[]): any; // 处理渲染逻辑
}

0 comments on commit 1bcef99

Please sign in to comment.