mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-25 12:45:17 +00:00
10 lines
189 B
C
10 lines
189 B
C
|
#pragma once
|
||
|
|
||
|
#include "al/actor/ActorCameraTarget.h"
|
||
|
|
||
|
namespace al {
|
||
|
class CameraTargetHolder {
|
||
|
public:
|
||
|
al::ActorCameraTarget *tryGetViewTarget(int) const;
|
||
|
};
|
||
|
}
|