Skip to content

Commit d96d961

Browse files
committed
Remove unused exports
1 parent 4ba9f58 commit d96d961

12 files changed

+0
-36
lines changed

src/components/transcoders/basicDecay.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
import { ComponentHash } from '../../ComponentHash';
22
import { BinaryReader, createBinaryWriter } from '../../utils';
33

4-
export const HASH = ComponentHash.BasicDecay;
5-
export const VERSION = 3;
6-
74
const HUNDRED_YEARS_TICKS = 31557600000000000;
85

96
export type Component = {

src/components/transcoders/durabilityModule.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
import { ComponentHash } from '../../ComponentHash';
22
import { BinaryReader, createBinaryWriter } from '../../utils';
33

4-
export const HASH = ComponentHash.DurabilityModule;
5-
export const VERSION = 1;
6-
74
export type Component = {
85
integrity?: number;
96
};

src/components/transcoders/heatSourceBase.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
import { ComponentHash } from '../../ComponentHash';
22
import { BinaryReader, createBinaryWriter } from '../../utils';
33

4-
export const HASH = ComponentHash.HeatSourceBase;
5-
export const VERSION = 2;
6-
74
const HUNDRED_YEARS_TICKS = 31557600000000000;
85

96
export type Component = {

src/components/transcoders/liquidContainer.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
import { ComponentHash } from '../../ComponentHash';
22
import { BinaryReader, createBinaryWriter } from '../../utils';
33

4-
export const HASH = ComponentHash.LiquidContainer;
5-
export const VERSION = 1;
6-
74
type Color = {
85
r: number;
96
g: number;

src/components/transcoders/networkRigidbody.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
import { ComponentHash } from '../../ComponentHash';
22
import { BinaryReader, createBinaryWriter } from '../../utils';
33

4-
export const HASH = ComponentHash.NetworkRigidbody;
5-
export const VERSION = 1;
6-
74
export type Component = {
85
position?: {
96
x: number;

src/components/transcoders/physicalMaterialPart.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@ import { ComponentHash } from '../../ComponentHash';
22
import { PhysicalMaterialPartHash } from '../../PhysicalMaterialPartHash';
33
import { BinaryReader, createBinaryWriter } from '../../utils';
44

5-
export const HASH = ComponentHash.PhysicalMaterialPart;
6-
export const VERSION = 1;
7-
85
export type Component = {
96
materialHash?: number;
107
};

src/components/transcoders/pickup.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
import { ComponentHash } from '../../ComponentHash';
22
import { BinaryReader, createBinaryWriter } from '../../utils';
33

4-
export const HASH = ComponentHash.Pickup;
5-
export const VERSION = 1;
6-
74
export type Component = {
85
lastInteractorPlayerId?: number;
96
};

src/components/transcoders/pickupDock.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
import { ComponentHash } from '../../ComponentHash';
22
import { BinaryReader, createBinaryWriter } from '../../utils';
33

4-
export const HASH = ComponentHash.PickupDock;
5-
export const VERSION = 2;
6-
74
export type Component = {
85
dockedTypeHash?: number;
96
quantity?: number;

src/components/transcoders/populationSpawnArea.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@ import { ComponentHash } from '../../ComponentHash';
22
import { PopulationDefinitionHash } from '../../PopulationDefinitionHash';
33
import { BinaryReader, createBinaryWriter } from '../../utils';
44

5-
export const HASH = ComponentHash.PopulationSpawnArea;
6-
export const VERSION = 2;
7-
85
type PopulationSaveDataChild = {
96
index: number;
107
pointIndex: number;

src/components/transcoders/spawnArea.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
import { ComponentHash } from '../../ComponentHash';
22
import { BinaryReader, createBinaryWriter } from '../../utils';
33

4-
export const HASH = ComponentHash.SpawnArea;
5-
export const VERSION = 1;
6-
74
export type Component = {
85
size?: number;
96
groundLayers?: number;

src/components/transcoders/statManager.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
import { ComponentHash } from '../../ComponentHash';
22
import { BinaryReader, createBinaryWriter } from '../../utils';
33

4-
export const HASH = ComponentHash.StatManager;
5-
export const VERSION = 2;
6-
74
type Stat = null | {
85
hash: number;
96
baseFlat: number;

src/components/transcoders/woodcutTree.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@ import { PresetHash } from '../../PresetHash';
33
import { SpeciesHash } from '../../SpeciesHash';
44
import { BinaryReader, createBinaryWriter } from '../../utils';
55

6-
export const HASH = ComponentHash.WoodcutTree;
7-
export const VERSION = 3;
8-
96
export type Component = {
107
presetHash?: 0 | PresetHash;
118
speciesHash?: SpeciesHash;

0 commit comments

Comments
 (0)