summaryrefslogtreecommitdiff
path: root/LibTSforge/PhysicalStore/Common.cs
diff options
context:
space:
mode:
authorWither OrNot2025-02-13 14:49:35 +0000
committerWither OrNot2025-02-13 14:49:37 +0000
commit0d59561bee4cf7db10d53a8aa58952ae65e856b5 (patch)
treeb2ddb66c883dd2ef75426de4c080f3121f0a8658 /LibTSforge/PhysicalStore/Common.cs
downloadTSforge-0d59561bee4cf7db10d53a8aa58952ae65e856b5.zip
Initial commit1.0.0
Co-authored-by: neko <[email protected]> Co-authored-by: Lyssa <[email protected]> Co-authored-by: abbodi1406 <[email protected]>
Diffstat (limited to 'LibTSforge/PhysicalStore/Common.cs')
-rw-r--r--LibTSforge/PhysicalStore/Common.cs21
1 files changed, 21 insertions, 0 deletions
diff --git a/LibTSforge/PhysicalStore/Common.cs b/LibTSforge/PhysicalStore/Common.cs
new file mode 100644
index 0000000..f73f022
--- /dev/null
+++ b/LibTSforge/PhysicalStore/Common.cs
@@ -0,0 +1,21 @@
+namespace LibTSforge.PhysicalStore
+{
+ using System.Runtime.InteropServices;
+
+ public enum BlockType : uint
+ {
+ NONE,
+ NAMED,
+ ATTRIBUTE,
+ TIMER
+ }
+
+ [StructLayout(LayoutKind.Sequential, Pack = 1)]
+ public struct Timer
+ {
+ public ulong Unknown;
+ public ulong Time1;
+ public ulong Time2;
+ public ulong Expiry;
+ }
+}