mirror of
https://github.com/MonsterDruide1/OdysseyDecomp
synced 2026-05-10 17:29:13 +00:00
Some checks are pending
Compile and verify functions / compile_verify (push) Waiting to run
Copy headers to separate repo / copy_headers (push) Waiting to run
decomp-dev / publish_progress_decomp_dev (1.0) (push) Waiting to run
lint / clang-format (push) Waiting to run
lint / custom-lint (push) Waiting to run
Check and verify that setup works on NixOS / nixos_verify (push) Waiting to run
progress / publish_progress (push) Waiting to run
testcompile / test_compile (push) Waiting to run
Trigger full-sync on the tracker repo on push / api-trigger-workflow (push) Waiting to run
11 lines
223 B
C++
11 lines
223 B
C++
#pragma once
|
|
|
|
#include "Library/Camera/CameraPoserFactory.h"
|
|
|
|
namespace al {
|
|
class SimpleCameraPoserFactory : public CameraPoserFactory {
|
|
public:
|
|
SimpleCameraPoserFactory(const char* factoryName);
|
|
};
|
|
} // namespace al
|