Skip to content

Commit 5e3b717

Browse files
committed
Fix wiki
1 parent effac78 commit 5e3b717

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

wiki/Home.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1173,6 +1173,15 @@ let id = ToCRUID(1337ul);
11731173
FTLog(s"CRUID: \(CRUIDToHash(id))");
11741174
```
11751175

1176+
### TweakDBID
1177+
1178+
```swift
1179+
// Vehicle.v_sport2_mizutani_shion_nomad_player
1180+
// 0x0000002CAE0BC6B5
1181+
let hash = 191898568373ul;
1182+
let recordID = TDBID.FromNumber(hash);
1183+
```
1184+
11761185
### Hash functions
11771186

11781187
```swift
@@ -1191,7 +1200,7 @@ let test: Bool = BitTest32(6, 1);
11911200

11921201
### Vector2 operators and casts
11931202

1194-
Add the following operators:
1203+
Added the following operators:
11951204
- `+`, `+=`
11961205
- `-`, `-=`
11971206
- `*`, `*=`
@@ -1200,13 +1209,13 @@ Add the following operators:
12001209
- `>`, `>=`
12011210
- `<`, `<=`
12021211

1203-
Add the following casts:
1212+
Added the following casts:
12041213
- `Vector2` to/from `Vector3`
12051214
- `Vector2` to/from `Vector4`
12061215

12071216
### Vector3 operators and casts
12081217

1209-
Add the following operators:
1218+
Added the following operators:
12101219
- `+`, `+=`
12111220
- `-`, `-=`
12121221
- `*`, `*=`
@@ -1215,26 +1224,17 @@ Add the following operators:
12151224
- `>`, `>=`
12161225
- `<`, `<=`
12171226

1218-
Add the following casts:
1227+
Added the following casts:
12191228
- `Vector2` to/from `Vector3`
12201229

1221-
### TDBID
1222-
1223-
```swift
1224-
// Vehicle.v_sport2_mizutani_shion_nomad_player
1225-
// 0x0000002CAE0BC6B5
1226-
let hash = 191898568373ul;
1227-
let recordID = TDBID.FromNumber(hash);
1228-
```
1229-
12301230
### Reference
12311231

12321232
- [CName](https://github.com/psiberx/cp2077-codeware/blob/main/scripts/Utils/CName.reds)
12331233
- [CRUID](https://github.com/psiberx/cp2077-codeware/blob/main/scripts/Utils/CRUID.reds)
12341234
- [NodeRef](https://github.com/psiberx/cp2077-codeware/blob/main/scripts/Utils/NodeRef.reds)
1235-
- [String](https://github.com/psiberx/cp2077-codeware/blob/main/scripts/Utils/String.reds)
1235+
- [TweakDBID](https://github.com/psiberx/cp2077-codeware/blob/main/scripts/Utils/TweakDBID.reds)
12361236
- [Hash](https://github.com/psiberx/cp2077-codeware/blob/main/scripts/Utils/Hash.reds)
12371237
- [Bits](https://github.com/psiberx/cp2077-codeware/blob/main/scripts/Utils/Bits.reds)
12381238
- [Vector2](https://github.com/psiberx/cp2077-codeware/blob/main/scripts/Utils/Vector2.reds)
12391239
- [Vector3](https://github.com/psiberx/cp2077-codeware/blob/main/scripts/Utils/Vector3.reds)
1240-
- [TweakDBID](https://github.com/psiberx/cp2077-codeware/blob/main/scripts/Utils/TweakDBID.reds)
1240+
- [String](https://github.com/psiberx/cp2077-codeware/blob/main/scripts/Utils/String.reds)

0 commit comments

Comments
 (0)