Author Topic: code folding setup  (Read 3913 times)

Offline 3DModelerMan

  • Multiple posting newcomer
  • *
  • Posts: 21
code folding setup
« on: August 09, 2008, 05:39:51 pm »
How do I put folding points in my code?.
Thanks :D.

Offline JGM

  • Lives here!
  • ****
  • Posts: 518
  • Got to practice :)
Re: code folding setup
« Reply #1 on: August 09, 2008, 07:32:07 pm »
It says it on the documentation but here it is:

//{My folding point
   ...Som code here
//}

Example:

//{Functions
   FunctionOne();
   FunctionTwo();
//}

//{Main
  void main()
  {
   }
//}