디폴트 설정 데이터 추가

- 더미로 미리 추가
This commit is contained in:
BoyongHwang
2026-01-31 20:55:39 +09:00
parent ca56e195d8
commit e9576454da
7 changed files with 96 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
[
{
"name": "id",
"type": "int",
"condition": null,
"description": "고유 ID"
},
{
"name": "memo",
"type": "string",
"condition": null,
"description": "기획 메모"
},
{
"name": "scene",
"type": "string",
"condition": null,
"description": "사용될 scene 입력 (유니티 파일명과 맞춰야 함)\\n • GameMain\\n • 빈 칸이면 모든 씬 허용"
},
{
"name": "key",
"type": "string",
"condition": null,
"description": "조회 키"
},
{
"name": "value",
"type": "string",
"condition": null,
"description": "값"
}
]

View File

@@ -0,0 +1,2 @@
id,memo,scene,key,value
1,test,1,1,1
1 id memo scene key value
2 1 test 1 1 1