mirror of https://github.com/axmolengine/axmol.git
Merge pull request #9107 from Dhilan007/v3-audio-includefix
Remove unneeded include in AudioEngine.h
This commit is contained in:
commit
6d08b33a68
|
@ -40,6 +40,10 @@
|
|||
|
||||
#define TIME_DELAY_PRECISION 0.0001
|
||||
|
||||
#ifdef ERROR
|
||||
#undef ERROR
|
||||
#endif // ERROR
|
||||
|
||||
using namespace cocos2d;
|
||||
using namespace cocos2d::experimental;
|
||||
|
||||
|
|
|
@ -28,10 +28,12 @@
|
|||
#ifndef __AUDIO_ENGINE_H_
|
||||
#define __AUDIO_ENGINE_H_
|
||||
|
||||
#include <string.h>
|
||||
#include <functional>
|
||||
#include <list>
|
||||
#include <string>
|
||||
#include <unordered_map>
|
||||
|
||||
#include "2d/CCNode.h"
|
||||
#include "platform/CCPlatformMacros.h"
|
||||
#include "Export.h"
|
||||
|
||||
#ifdef ERROR
|
||||
|
|
Loading…
Reference in New Issue