agree popup 추가
This commit is contained in:
15
Config.cs
15
Config.cs
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user