forked from Luffyyy/DieselEngineFormats
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDefs.cs
More file actions
40 lines (35 loc) · 1.15 KB
/
Defs.cs
File metadata and controls
40 lines (35 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
using DieselEngineFormats.Bundle;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DieselEngineFormats
{
public static class Defs
{
public static BundleHeaderConfig PD2Config = new BundleHeaderConfig
{
HeaderStartLengthTag = 909195826,
HeaderEndLengthTag = 1699008,
EntryStartLengthTag = 1699073,
EndTag = 2495946521,
EmptyEndInt = true,
EntryStartTag = 1698812,
ReferenceStartTag = 3959211512
};
public static BundleHeaderConfig PD2ConfigPreU70 = new BundleHeaderConfig
{
};
public static BundleHeaderConfig PDTHConfig = new BundleHeaderConfig
{
HeaderStartLengthTag = 229179392,
HeaderEndLengthTag = 1633928,
EntryStartLengthTag = 1,
EntryStartTag = 1633936,
ReferenceStartTag = 3959211512,
EndTag = 2495946521,
};
public static List<BundleHeaderConfig> ConfigLookup = new List<BundleHeaderConfig> { PD2Config, PD2ConfigPreU70, PDTHConfig };
}
}