source: trunk/test/sandbox/sample.cpp @ 2297

Last change on this file since 2297 was 2297, checked in by sam, 10 years ago

base: implement UNUSED() macro and put it here and there.

  • Property svn:keywords set to Id
File size: 586 bytes
Line 
1//
2// Lol Engine - Sandbox program
3//
4// Copyright: (c) 2005-2011 Sam Hocevar <sam@hocevar.net>
5//   This program is free software; you can redistribute it and/or
6//   modify it under the terms of the Do What The Fuck You Want To
7//   Public License, Version 2, as published by Sam Hocevar. See
8//   http://www.wtfpl.net/ for more details.
9//
10
11#if defined HAVE_CONFIG_H
12#   include "config.h"
13#endif
14
15#include "core.h"
16
17using namespace std;
18using namespace lol;
19
20int main(int argc, char **argv)
21{
22    UNUSED(argc, argv);
23
24    /* Insert any test code here */
25    return EXIT_SUCCESS;
26}
27
Note: See TracBrowser for help on using the repository browser.