ctsavestructure.c 571 B

1234567891011121314151617
  1. class CTSaveStructure
  2. {
  3. int m_InterpType;
  4. int m_InterpSpeed;
  5. float m_BlurValue;
  6. ref array<ref Param6<vector, vector, float, float, float, int>> m_Cameras;
  7. ref array<ref Param4<int, int, float, bool>> m_Events;
  8. ref array<ref Param5<vector, vector, string, ref array<string>, string>> m_Actors;
  9. void CTSaveStructure()
  10. {
  11. m_Cameras = new array<ref Param6<vector, vector, float, float, float, int>>;
  12. m_Events = new array<ref Param4<int, int, float, bool>>;
  13. m_Actors = new array<ref Param5<vector, vector, string, ref array<string>, string>>;
  14. }
  15. }