mirror of https://github.com/axmolengine/axmol.git
24 lines
311 B
C
24 lines
311 B
C
|
//
|
||
|
// Bug-15776.hpp
|
||
|
// cocos2d_tests
|
||
|
//
|
||
|
// Created by Ricardo Quesada on 6/17/16.
|
||
|
//
|
||
|
//
|
||
|
|
||
|
#ifndef Bug_15776_hpp
|
||
|
#define Bug_15776_hpp
|
||
|
|
||
|
#include "BugsTest.h"
|
||
|
|
||
|
class Bug15776Layer : public BugsTestBase
|
||
|
{
|
||
|
public:
|
||
|
CREATE_FUNC(Bug15776Layer);
|
||
|
|
||
|
virtual bool init() override;
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif /* Bug_15776_hpp */
|