| 1 | #pragma once |
|---|---|
| 2 | |
| 3 | #include "Library/Anim/DitherAnimator.h" |
| 4 | |
| 5 | namespace al { |
| 6 | class LiveActor; |
| 7 | class Resource; |
| 8 | |
| 9 | class FarDistanceDitherAnimator : public DitherAnimator { |
| 10 | public: |
| 11 | static FarDistanceDitherAnimator* tryCreate(LiveActor*, const Resource*, const char*); |
| 12 | }; |
| 13 | |
| 14 | } // namespace al |
| 15 |