summaryrefslogtreecommitdiff
path: root/systems/sheet/src/sheet.rs
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-03-14 17:25:17 +0800
committer魏曹先生 <1992414357@qq.com>2026-03-14 17:25:17 +0800
commit5b9fc427d7f6c7a811c2ff1731271a050514ca9f (patch)
tree0b93a3b469bd100e4f0b31c17e50740837b10214 /systems/sheet/src/sheet.rs
parent62d72b6e5f97b8b1eb1f98e3d98272cb0fc9aec7 (diff)
Add sheet data tree structure
Diffstat (limited to 'systems/sheet/src/sheet.rs')
-rw-r--r--systems/sheet/src/sheet.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/systems/sheet/src/sheet.rs b/systems/sheet/src/sheet.rs
index 7bdc532..fdcdd67 100644
--- a/systems/sheet/src/sheet.rs
+++ b/systems/sheet/src/sheet.rs
@@ -33,7 +33,7 @@ pub struct Sheet {
name: String,
/// Data in the sheet
- data: SheetData,
+ pub(crate) data: SheetData,
/// Edit information
edit: SheetEdit,