mirror of
https://github.com/echojc/osu-ds.git
synced 2025-06-18 17:05:36 -04:00

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>
32 lines
535 B
C++
32 lines
535 B
C++
#include <nds.h>
|
|
#include <stdio.h>
|
|
#include <list>
|
|
|
|
#include "HitObjects/HitObject.h"
|
|
#include "HitObjects/HitCircle.h"
|
|
#include "HitObjects/HitSlider.h"
|
|
#include "HitObjects/HitSpinner.h"
|
|
#include "Helpers/InputHelper.h"
|
|
|
|
#ifndef __HITOBJECTMANAGER_H__
|
|
#define __HITOBJECTMANAGER_H__
|
|
|
|
using namespace std;
|
|
|
|
typedef list<HitObject*>::iterator hitObjectIterator;
|
|
|
|
class HitObjectManager
|
|
{
|
|
public:
|
|
~HitObjectManager();
|
|
|
|
void Add(HitObject* object);
|
|
void HandleInput();
|
|
|
|
protected:
|
|
list<HitObject*> mHitObjects;
|
|
};
|
|
|
|
#endif
|
|
|