Serializable.pkg 336 B

1234567891011
  1. $#include "Scene/Serializable.h"
  2. class Serializable : public Object
  3. {
  4. void SetTemporary(bool enable);
  5. bool IsTemporary() const;
  6. void SetInterceptNetworkUpdate(const String attributeName, bool enable);
  7. bool GetInterceptNetworkUpdate(const String attributeName);
  8. tolua_property__is_set bool temporary;
  9. };