初始化obs/Unity仓库

This commit is contained in:
2026-05-03 14:06:26 +08:00
commit 0d9e5282f3
95 changed files with 14419 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
| 类型 | 符号 | 占用空间 |
| ----- | ------- | ----- |
| 有符号整形 | sbyte | 1个字节 |
| | int | 4个字节 |
| | short | 2个字节 |
| | long | 8个字节 |
| 无符号整形 | byte | 1个字节 |
| | uint | 4个字节 |
| | ushort | 2个字节 |
| | ulong | 8个字节 |
| 浮点数 | float | 4个字节 |
| | double | 8个字节 |
| | decimal | 16个字节 |
| 字符 | char | 2个字节 |
| 布尔 | bool | 1个字节 |