osu-ds/source/HitObjects/HitCircle.h
KonPet 183228e28e Change stuff to make it build
Removed the arm7 section
Changed the makefile to only use the arm9 stuff
Epicpkmn: Fix source/Graphics/GraphicsManager.cpp

Co-Authored-By: Pk11 <epicpkmn11@outlook.com>
Co-Authored-By: Kaisaan <34224128+Kaisaan@users.noreply.github.com>
2021-10-21 00:03:39 +02:00

22 lines
330 B
C++

#include <nds.h>
#include "HitObject.h"
#ifndef __HITCIRCLE_H__
#define __HITCIRCLE_H__
class HitCircle : public HitObject
{
public:
HitCircle(s32 x, s32 y, s32 time, HitObjectType type, HitObjectSound sound);
bool InBounds(s32 x, s32 y);
void OnTouchDown(const touchPosition& touch);
void Hit();
};
#endif