13 lines
157 B
C
13 lines
157 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <kiwano/kiwano.h>
|
||
|
|
using namespace kiwano;
|
||
|
|
|
||
|
|
class Cursor :public Sprite
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
Cursor();
|
||
|
|
void OnUpdate(Duration dt) override;
|
||
|
|
};
|
||
|
|
|