예제 #1
0
 /// <summary>
 /// コンストラクタ
 /// </summary>
 /// <param name="path">INIファイルのパス</param>
 public HIniFile(String path)
 {
     Path = path;
     HFile file = new HFile(Path);
     if (!file.exists()) { file.create(); }
 }
 /// <summary>
 /// コンストラクタ
 /// </summary>
 /// <param name="path">Wavファイルパス</param>
 public SoundManager(String path)
 {
     HFile file = new HFile(path);
     if (!file.exists()) { return; }
     Player = new SoundPlayer(path);
 }