mirror of
https://git.xeondev.com/LR/S.git
synced 2026-02-04 23:12:19 +01:00
chore(Tables): add TrackMapPointTable
This commit is contained in:
@@ -14,6 +14,7 @@ pub const SkillPatchDataBundleList = @import("Tables/SkillPatchDataBundleList.zi
|
||||
pub const WeaponBasicData = @import("Tables/WeaponBasicData.zig");
|
||||
pub const CharWpnRecommendData = @import("Tables/CharWpnRecommendData.zig");
|
||||
pub const DomainData = @import("Tables/DomainData.zig");
|
||||
pub const MapPointData = @import("Tables/MapPointData.zig");
|
||||
|
||||
pub const StrToNum = struct {
|
||||
pub const file = "StrIdNumTable.json";
|
||||
@@ -32,6 +33,7 @@ str_to_num: StringArrayHashMap(StrToNum),
|
||||
num_to_str: StringArrayHashMap(NumToStr),
|
||||
char_wpn_recommend: StringArrayHashMap(CharWpnRecommendData),
|
||||
domain_data: StringArrayHashMap(DomainData),
|
||||
track_map_point: StringArrayHashMap(MapPointData),
|
||||
|
||||
pub const LoadError = error{
|
||||
NotStarted,
|
||||
|
||||
10
gamesv/src/Assets/Tables/MapPointData.zig
Normal file
10
gamesv/src/Assets/Tables/MapPointData.zig
Normal file
@@ -0,0 +1,10 @@
|
||||
pub const file = "TrackMapPointTable.json";
|
||||
|
||||
start: []const u8,
|
||||
end: []const u8,
|
||||
quest: []const u8,
|
||||
pos: struct {
|
||||
x: f32,
|
||||
y: f32,
|
||||
z: f32,
|
||||
},
|
||||
Reference in New Issue
Block a user