File tree Expand file tree Collapse file tree 12 files changed +0
-36
lines changed
src/components/transcoders Expand file tree Collapse file tree 12 files changed +0
-36
lines changed Original file line number Diff line number Diff line change 1
1
import { ComponentHash } from '../../ComponentHash' ;
2
2
import { BinaryReader , createBinaryWriter } from '../../utils' ;
3
3
4
- export const HASH = ComponentHash . BasicDecay ;
5
- export const VERSION = 3 ;
6
-
7
4
const HUNDRED_YEARS_TICKS = 31557600000000000 ;
8
5
9
6
export type Component = {
Original file line number Diff line number Diff line change 1
1
import { ComponentHash } from '../../ComponentHash' ;
2
2
import { BinaryReader , createBinaryWriter } from '../../utils' ;
3
3
4
- export const HASH = ComponentHash . DurabilityModule ;
5
- export const VERSION = 1 ;
6
-
7
4
export type Component = {
8
5
integrity ?: number ;
9
6
} ;
Original file line number Diff line number Diff line change 1
1
import { ComponentHash } from '../../ComponentHash' ;
2
2
import { BinaryReader , createBinaryWriter } from '../../utils' ;
3
3
4
- export const HASH = ComponentHash . HeatSourceBase ;
5
- export const VERSION = 2 ;
6
-
7
4
const HUNDRED_YEARS_TICKS = 31557600000000000 ;
8
5
9
6
export type Component = {
Original file line number Diff line number Diff line change 1
1
import { ComponentHash } from '../../ComponentHash' ;
2
2
import { BinaryReader , createBinaryWriter } from '../../utils' ;
3
3
4
- export const HASH = ComponentHash . LiquidContainer ;
5
- export const VERSION = 1 ;
6
-
7
4
type Color = {
8
5
r : number ;
9
6
g : number ;
Original file line number Diff line number Diff line change 1
1
import { ComponentHash } from '../../ComponentHash' ;
2
2
import { BinaryReader , createBinaryWriter } from '../../utils' ;
3
3
4
- export const HASH = ComponentHash . NetworkRigidbody ;
5
- export const VERSION = 1 ;
6
-
7
4
export type Component = {
8
5
position ?: {
9
6
x : number ;
Original file line number Diff line number Diff line change @@ -2,9 +2,6 @@ import { ComponentHash } from '../../ComponentHash';
2
2
import { PhysicalMaterialPartHash } from '../../PhysicalMaterialPartHash' ;
3
3
import { BinaryReader , createBinaryWriter } from '../../utils' ;
4
4
5
- export const HASH = ComponentHash . PhysicalMaterialPart ;
6
- export const VERSION = 1 ;
7
-
8
5
export type Component = {
9
6
materialHash ?: number ;
10
7
} ;
Original file line number Diff line number Diff line change 1
1
import { ComponentHash } from '../../ComponentHash' ;
2
2
import { BinaryReader , createBinaryWriter } from '../../utils' ;
3
3
4
- export const HASH = ComponentHash . Pickup ;
5
- export const VERSION = 1 ;
6
-
7
4
export type Component = {
8
5
lastInteractorPlayerId ?: number ;
9
6
} ;
Original file line number Diff line number Diff line change 1
1
import { ComponentHash } from '../../ComponentHash' ;
2
2
import { BinaryReader , createBinaryWriter } from '../../utils' ;
3
3
4
- export const HASH = ComponentHash . PickupDock ;
5
- export const VERSION = 2 ;
6
-
7
4
export type Component = {
8
5
dockedTypeHash ?: number ;
9
6
quantity ?: number ;
Original file line number Diff line number Diff line change @@ -2,9 +2,6 @@ import { ComponentHash } from '../../ComponentHash';
2
2
import { PopulationDefinitionHash } from '../../PopulationDefinitionHash' ;
3
3
import { BinaryReader , createBinaryWriter } from '../../utils' ;
4
4
5
- export const HASH = ComponentHash . PopulationSpawnArea ;
6
- export const VERSION = 2 ;
7
-
8
5
type PopulationSaveDataChild = {
9
6
index : number ;
10
7
pointIndex : number ;
Original file line number Diff line number Diff line change 1
1
import { ComponentHash } from '../../ComponentHash' ;
2
2
import { BinaryReader , createBinaryWriter } from '../../utils' ;
3
3
4
- export const HASH = ComponentHash . SpawnArea ;
5
- export const VERSION = 1 ;
6
-
7
4
export type Component = {
8
5
size ?: number ;
9
6
groundLayers ?: number ;
Original file line number Diff line number Diff line change 1
1
import { ComponentHash } from '../../ComponentHash' ;
2
2
import { BinaryReader , createBinaryWriter } from '../../utils' ;
3
3
4
- export const HASH = ComponentHash . StatManager ;
5
- export const VERSION = 2 ;
6
-
7
4
type Stat = null | {
8
5
hash : number ;
9
6
baseFlat : number ;
Original file line number Diff line number Diff line change @@ -3,9 +3,6 @@ import { PresetHash } from '../../PresetHash';
3
3
import { SpeciesHash } from '../../SpeciesHash' ;
4
4
import { BinaryReader , createBinaryWriter } from '../../utils' ;
5
5
6
- export const HASH = ComponentHash . WoodcutTree ;
7
- export const VERSION = 3 ;
8
-
9
6
export type Component = {
10
7
presetHash ?: 0 | PresetHash ;
11
8
speciesHash ?: SpeciesHash ;
You can’t perform that action at this time.
0 commit comments