mirror of
https://github.com/zeldaret/botw
synced 2026-06-27 01:55:18 -04:00
17 lines
273 B
C++
17 lines
273 B
C++
#pragma once
|
|
|
|
namespace nn::g3d {
|
|
|
|
class WorldMtxManip;
|
|
|
|
class ICalculateWorldCallback {
|
|
public:
|
|
// TODO
|
|
struct CallbackArg;
|
|
|
|
virtual ~ICalculateWorldCallback() = 0;
|
|
virtual void Exec(CallbackArg& arg, WorldMtxManip& manip) = 0;
|
|
};
|
|
|
|
} // namespace nn::g3d
|