mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-11 23:54:18 +00:00
19 lines
443 B
C++
19 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;
|
|
}
|