chore: HERV 통합 저장소 재초기화 커밋

손상된 .git 히스토리(missing tree)로 재초기화 후 작업트리 전체 커밋.
.claude/ 만 제외(로컬 에이전트 설정). 구 저장소 백업(.git_corrupt_backup/) 포함.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
jeon
2026-06-16 09:29:03 +09:00
commit a502322188
630 changed files with 65126 additions and 0 deletions
@@ -0,0 +1,24 @@
using System.Windows.Controls;
using System.Windows.Media;
namespace DiffuserSimulator
{
// 디퓨저 각실(방) 1개 패널. 레이아웃은 RoomPanel.xaml(디자이너 편집), 동작 연결은 MainWindow 가 담당.
// x:Name 컨트롤들은 같은 어셈블리의 MainWindow 에서 internal 필드로 직접 접근한다.
public partial class RoomPanel : UserControl
{
public int RxCount;
public RoomPanel()
{
InitializeComponent();
}
// 방 이름 + 헤더 색상 설정
public void SetHeader(string name, Color color)
{
HdrName.Text = name;
HdrColor.Fill = new SolidColorBrush(color);
}
}
}