FBFMODTool.cs 410 B

12345678910111213141516171819
  1. namespace ThirdParty.FMOD
  2. {
  3. public class FBFMODTool
  4. {
  5. public static FBFMODTool Instance {
  6. get
  7. {
  8. if (_instance == null)
  9. {
  10. _instance = new FBFMODTool();
  11. }
  12. return _instance;
  13. }
  14. }
  15. public static FBFMODTool _instance;
  16. public IFMODTool iFMODTool;
  17. }
  18. }