2016-06-18 07:07:33 +08:00
|
|
|
//
|
|
|
|
// 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;
|
2016-08-05 14:04:39 +08:00
|
|
|
|
|
|
|
virtual std::string title() const override;
|
|
|
|
virtual std::string subtitle() const override;
|
2016-06-18 07:07:33 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* Bug_15776_hpp */
|