20 lines
443 B
C++
20 lines
443 B
C++
|
/*
|
||
|
==============================================================================
|
||
|
|
||
|
This file contains the basic startup code for a JUCE application.
|
||
|
|
||
|
==============================================================================
|
||
|
*/
|
||
|
|
||
|
%%app_headers%%
|
||
|
|
||
|
//==============================================================================
|
||
|
int main (int argc, char* argv[])
|
||
|
{
|
||
|
|
||
|
// ..your code goes here!
|
||
|
|
||
|
|
||
|
return 0;
|
||
|
}
|