mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-01 01:32:39 +00:00
17 lines
No EOL
666 B
C++
17 lines
No EOL
666 B
C++
#pragma once
|
|
|
|
#include "al/LiveActor/LiveActor.h"
|
|
#include "al/resource/ActorResourceHolder.h"
|
|
#include "al/resource/ActorResource.h"
|
|
|
|
namespace al {
|
|
|
|
al::ActorResource *findOrCreateActorResource(al::ActorResourceHolder *,char const*,char const*);
|
|
al::ActorResource* findOrCreateActorResourceWithAnimResource(al::ActorResourceHolder*,
|
|
char const*, char const*,
|
|
char const*, bool);
|
|
|
|
al::Resource *getModelResource(al::LiveActor const*);
|
|
al::Resource *getModelResourceYaml(al::LiveActor const*,char const*,char const*);
|
|
|
|
} |