Skip to content
Ewan edited this page Dec 27, 2017 · 1 revision

Breaking API Changes

  • Method overloads are now optional parameters.
  • _Method_(uint aCount) no longer exists, please use: _Method_(aCount: [val]) instead
  • PictureSize enum is now PascalCase, was ALLCAPS
PictureSize.SMALL == PictureSize.Small;
PictureSize.MEDIUM == PictureSize.Medium;
PictureSize.LARGE == PictureSize.Large;
Clone this wiki locally