This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #ifdef WIN32 | |
| int WINAPI WinMain(HINSTANCE instance, HINSTANCE prev_instance, char* command_line, int show_command) | |
| { | |
| int argc; | |
| char** argv; | |
| char* arg; | |
| int index; | |
| int result; | |
| // count the arguments |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| struct Vector2 | |
| { | |
| double x; | |
| double y; | |
| }; | |
| struct Triangle2 | |
| { | |
| Vector2 v[3]; | |
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Car | |
| { | |
| public: | |
| Car() | |
| :_status(0x00) | |
| { | |
| } | |
| void setLocked() | |
| { |
NewerOlder