<<<Index>>>

Creating your own object



struct Point
{
    int x; // member variables
    int y;
    void adjust( int x_, int y_ ); // member functions
    void draw( Plane* plane_ );
};

<<<Index>>>