mirror of https://github.com/axmolengine/axmol.git
18 lines
295 B
C
18 lines
295 B
C
|
#ifndef __REF_PTR_TEST_H__
|
||
|
#define __REF_PTR_TEST_H__
|
||
|
|
||
|
#include "UnitTest.h"
|
||
|
|
||
|
class RefPtrTest : public UnitTestDemo
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
CREATE_FUNC(RefPtrTest);
|
||
|
|
||
|
virtual void onEnter() override;
|
||
|
|
||
|
virtual std::string subtitle() const override;
|
||
|
};
|
||
|
|
||
|
#endif /* __REF_PTR_TEST_H__ */
|