Skip to content
This repository was archived by the owner on Sep 20, 2020. It is now read-only.

Commit 6bac9f9

Browse files
Internal imports
1 parent 4cc96e5 commit 6bac9f9

File tree

9 files changed

+11
-14
lines changed

9 files changed

+11
-14
lines changed

lib/rmmz_core/Bitmap.d.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import * as PIXI from "pixi.js";
22

3-
import { Rectangle } from "./Rectangle";
4-
import { Stage } from "./Stage";
3+
import { Rectangle, Stage } from ".";
54

65
declare class Bitmap {
76

lib/rmmz_core/Graphics.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import * as PIXI from "pixi.js";
22

33
import { EffekseerContext } from "effekseer";
4-
import { Stage } from "./Stage";
4+
import { Stage } from ".";
55

66
declare namespace Graphics {
77

lib/rmmz_core/Input.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { RPG } from "./RPG";
1+
import { RPG } from ".";
22

33
declare namespace Input {
44

lib/rmmz_core/Sprite.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import * as PIXI from "pixi.js";
2-
import { Bitmap } from "./Bitmap";
2+
3+
import { Bitmap } from ".";
34

45
declare type RGBA = [number, number, number, number];
56

lib/rmmz_core/Tilemap.d.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import * as PIXI from "pixi.js";
22

3-
import { Point } from "./Point";
4-
import { Bitmap } from "./Bitmap";
3+
import { Point, Bitmap } from ".";
54

65
declare class Tilemap extends PIXI.Container {
76

lib/rmmz_core/TilingSprite.d.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import * as PIXI from "pixi.js";
22

3-
import { Bitmap } from "./Bitmap";
4-
import { Point } from "./Point";
3+
import { Bitmap, Point } from ".";
54

65
declare class TilingSprite extends PIXI.TilingSprite {
76

lib/rmmz_core/Weather.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import * as PIXI from "pixi.js";
2-
import { Point } from "./Point";
2+
3+
import { Point } from ".";
34

45
declare class Weather extends PIXI.Container {
56

lib/rmmz_core/Window.d.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
import * as PIXI from "pixi.js";
22

3-
import { Bitmap } from "./Bitmap";
4-
import { Rectangle } from "./Rectangle";
5-
import { Point } from "./Point";
3+
import { Bitmap, Rectangle, Point } from ".";
64

75
declare class Window extends PIXI.Container {
86

lib/rmmz_managers/AudioManager.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { WebAudio } from "../rmmz_core/WebAudio";
1+
import { WebAudio } from "../rmmz_core";
22

33
declare interface CurrentAudio {
44
name: string;

0 commit comments

Comments
 (0)