| 324 | } |
| 325 | |
| 326 | void Script::Serialize(SerializeStream& stream, const void* otherObj) |
| 327 | { |
| 328 | // Base |
| 329 | SceneObject::Serialize(stream, otherObj); |
| 330 | |
| 331 | SERIALIZE_GET_OTHER_OBJ(Script); |
| 332 | |
| 333 | SERIALIZE_BIT_MEMBER(Enabled, _enabled); |
| 334 | } |
| 335 | |
| 336 | void Script::Deserialize(DeserializeStream& stream, ISerializeModifier* modifier) |
| 337 | { |
nothing calls this directly
no test coverage detected