Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
MegaRedHand committed Nov 9, 2024
1 parent caacb0e commit cb22444
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import RouterSvg from "./assets/router.svg";
import ServerSvg from "./assets/server.svg";
import ComputerSvg from "./assets/pc.svg";

import { Application, Graphics, EventSystem, Assets, Ticker } from "pixi.js";
import { Application, Graphics, EventSystem, Assets } from "pixi.js";

import * as pixi_viewport from "pixi-viewport";
import { ViewGraph } from "./types/graphs/viewgraph";
Expand Down
2 changes: 1 addition & 1 deletion src/types/packet.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Graphics, Ticker } from "pixi.js";
import { Edge, Position } from "./edge";

export let packetTicker = new Ticker();
export const packetTicker = new Ticker();

export class Packet extends Graphics {
speed: number;
Expand Down

0 comments on commit cb22444

Please sign in to comment.