blob: 2478693255791d070831a3140e5dc497b0a274ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Encabezados de archivo
Para limpiar los archivos, usamos un formato estándar para los nuevos encabezados de archivos.
XXXX = año de inicio
YYYY = año activo
**Código independiente de AzerothCore (sin código anterior de nadie):**
```cpp
/*
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU AGPL v3 license, you may redistribute it and/or modify it under version 3 of the License, or (at your option), any later version.
*/
```
**Con código anterior de fuentes externas o desarrolladores:**
```cpp
/*
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU GPL v3 license, you may redistribute it and/or modify it under version 3 of the License, or (at your option), any later version.
* Copyright (C) XXXX-YYYY external-teamname <url>
*/
```
|