agree popup 추가

This commit is contained in:
2018-02-18 21:08:01 +09:00
parent df16cb5533
commit 86bf3ca21b
8 changed files with 376 additions and 31 deletions

View File

@@ -222,6 +222,21 @@ namespace friction
return m_UncheckedMaterial[m_strCurMaterial].m_Tables;
}
public bool DidAgreeAlert()
{
StringBuilder temp = new StringBuilder(10240);
int iRes = GetPrivateProfileString("Agree", "agree", "", temp, 10240, m_strPath);
bool bResult = false;
bool.TryParse(temp.ToString(), out bResult);
return bResult;
}
public void SetAgreeAlert()
{
WritePrivateProfileString("Agree", "agree", "true", m_strPath);
}
public struct COLUMN_NAME
{