Skip to content

Commit

Permalink
chore: update
Browse files Browse the repository at this point in the history
  • Loading branch information
ufocoder committed May 14, 2024
1 parent 71b16de commit 3264030
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/ecs/components/TextureComponent.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { Component } from "src/lib/ecs/Component";

export default class TextureComponent implements Component {
texture: Texture;
texture: TextureBitmap;

constructor(texture: Texture) {
constructor(texture: TextureBitmap) {
this.texture = texture;
}
}

0 comments on commit 3264030

Please sign in to comment.