| 1 | #pragma once |
|---|---|
| 2 | |
| 3 | #include "Library/LiveActor/LiveActor.h" |
| 4 | |
| 5 | class ElectricWire : public al::LiveActor { |
| 6 | public: |
| 7 | void tryUpdateDisplayModel(); |
| 8 | |
| 9 | bool isElectricWireRadio() { return mIsElectricWireRadio; } |
| 10 | |
| 11 | private: |
| 12 | char pad1[0x1a1]; |
| 13 | bool mIsElectricWireRadio; |
| 14 | }; |
| 15 |