X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fcommon%2Fmap.h;h=2a37793979d85fbba6c91ad6640b06269eb6f890;hb=063eb0e64a0a2122c5581a668217290eb0b01f2b;hp=4a6d04126ad49d01e925b783e2e5136725c8803a;hpb=0438f2fc5df337e4264103a86c1765ace9c6565a;p=plomrogue diff --git a/src/common/map.h b/src/common/map.h index 4a6d041..2a37793 100644 --- a/src/common/map.h +++ b/src/common/map.h @@ -1,4 +1,8 @@ /* src/common/map.h + * + * This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3 + * or any later version. For details on its copyright, license, and warranties, + * see the file NOTICE in the root directory of the PlomRogue source package. * * Game map. */ @@ -13,7 +17,7 @@ struct Map { char * cells; /* sequence of bytes encoding map cells */ - uint16_t length; /* map's edge length */ + uint16_t length; /* map's edge length, i.e. both height and width */ };