Skip to content

Commit

Permalink
updated bedrock types
Browse files Browse the repository at this point in the history
  • Loading branch information
DaanV2 committed Oct 13, 2024
1 parent 4a51852 commit a1bc36f
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/Lib/Internal/BehaviorPack/Block.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ComponentContainer } from 'bc-minecraft-bedrock-types/lib/src/minecraft/components';
import { ComponentContainer } from 'bc-minecraft-bedrock-types/lib/minecraft/components';
import { SMap } from "../../Types/SMap";
import { FormatVersion } from "../Types/FormatVersion";

Expand Down
2 changes: 1 addition & 1 deletion src/Lib/Internal/BehaviorPack/Entity.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ComponentContainer, ComponentGroups } from "bc-minecraft-bedrock-types/lib/src/minecraft/components";
import { ComponentContainer, ComponentGroups } from "bc-minecraft-bedrock-types/lib/minecraft/components";
import { SMap } from "../../Types/SMap";
import { ScriptContainer } from "../Types/Script";
import { CommandContainer } from "../General/Commands";
Expand Down
2 changes: 1 addition & 1 deletion src/Lib/Project/BehaviorPack/Entity/Process.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { SMap } from "../../../Types/SMap";
import { TextDocument } from "../../../Types/TextDocument";
import { Entity } from "./Entity";
import { Documentation } from "../../../Types/Documentation";
import { ComponentContainer } from "bc-minecraft-bedrock-types/lib/src/minecraft/components";
import { ComponentContainer } from "bc-minecraft-bedrock-types/lib/minecraft/components";
import { EntityProperty } from './Properties';

/**
Expand Down
2 changes: 1 addition & 1 deletion test/Project/BehaviorPack/BehaviorPackCollection.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Location } from "bc-minecraft-bedrock-types/lib/src/types";
import { Location } from "bc-minecraft-bedrock-types/lib/types";
import { MCProject } from "bc-minecraft-project";
import { expect } from "chai";
import { BehaviorPackCollection } from "../../../src/Lib/Project/BehaviorPack";
Expand Down
8 changes: 4 additions & 4 deletions test/Project/ProjectData.test.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import { Location } from "bc-minecraft-bedrock-types/lib/src/types";
import { Location } from "bc-minecraft-bedrock-types/lib/types";
import { DefinedUsing, Molang } from "bc-minecraft-molang";
import { MCProject } from "bc-minecraft-project";
import { expect } from "chai";
import { describe } from "mocha";
import { Manifest } from "../../src/Lib/Internal/Types";
import { BehaviorPack } from "../../src/Lib/Project/BehaviorPack";
import { ResourcePack } from "../../src/Lib/Project/ResourcePack/ResourcePack";
import { ProjectData } from "../../src/Lib/Project/ProjectData";
import { ResourcePack } from "../../src/Lib/Project/ResourcePack/ResourcePack";
import { TextProjectContext } from "../Utility";
import { describe } from "mocha";
import { Manifest } from "../../src/Lib/Internal/Types";

describe("ProjectData", () => {
describe("Sanity Check", () => {
Expand Down
2 changes: 1 addition & 1 deletion test/Types/DataSet.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Types } from "bc-minecraft-bedrock-types";
import { Location } from "bc-minecraft-bedrock-types/lib/src/types";
import { Location } from "bc-minecraft-bedrock-types/lib/types";
import { expect } from "chai";
import { DataSet } from "../../src/Lib/Types/DataSet";

Expand Down

0 comments on commit a1bc36f

Please sign in to comment.