mirror of
https://github.com/zeldaret/ss
synced 2026-07-02 12:05:54 -04:00
3829ee6d48
* Rough collider shape setup * d_a_obj_toD3_stone_figure OK * Cleanup * Cleanup 2
17 lines
280 B
C++
17 lines
280 B
C++
#ifndef ATTENTION_H
|
|
#define ATTENTION_H
|
|
|
|
#include <common.h>
|
|
|
|
class dAcBase_c;
|
|
|
|
class dAttention_c {
|
|
public:
|
|
static dAttention_c *sInstance;
|
|
|
|
void addTarget(dAcBase_c *target, s32, f32, f32, f32);
|
|
void addTarget(dAcBase_c *target, s32, f32, f32, f32, f32);
|
|
};
|
|
|
|
#endif
|