libui: Add copyright/author text
This commit is contained in:
parent
02b9dc579b
commit
5e6ce50c70
@ -1,3 +1,12 @@
|
||||
/**
|
||||
* @file Canvas.h
|
||||
* @author apio (cloudapio.eu)
|
||||
* @brief Drawable surfaces.
|
||||
*
|
||||
* @copyright Copyright (c) 2023, the Luna authors.
|
||||
*
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
#include <luna/Result.h>
|
||||
#include <luna/Types.h>
|
||||
|
@ -1,3 +1,12 @@
|
||||
/**
|
||||
* @file Color.h
|
||||
* @author apio (cloudapio.eu)
|
||||
* @brief RGBA colors.
|
||||
*
|
||||
* @copyright Copyright (c) 2023, the Luna authors.
|
||||
*
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
#include <luna/Types.h>
|
||||
|
||||
|
@ -1,3 +1,12 @@
|
||||
/**
|
||||
* @file Font.h
|
||||
* @author apio (cloudapio.eu)
|
||||
* @brief PSF font loading and rendering.
|
||||
*
|
||||
* @copyright Copyright (c) 2023, the Luna authors.
|
||||
*
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
#include <luna/Buffer.h>
|
||||
#include <luna/SharedPtr.h>
|
||||
|
@ -1,3 +1,12 @@
|
||||
/**
|
||||
* @file Image.h
|
||||
* @author apio (cloudapio.eu)
|
||||
* @brief TGA image loading and rendering.
|
||||
*
|
||||
* @copyright Copyright (c) 2023, the Luna authors.
|
||||
*
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
#include <luna/Buffer.h>
|
||||
#include <luna/SharedPtr.h>
|
||||
|
@ -1,3 +1,12 @@
|
||||
/**
|
||||
* @file Point.h
|
||||
* @author apio (cloudapio.eu)
|
||||
* @brief 2D space points.
|
||||
*
|
||||
* @copyright Copyright (c) 2023, the Luna authors.
|
||||
*
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
namespace ui
|
||||
|
@ -1,3 +1,12 @@
|
||||
/**
|
||||
* @file Rect.h
|
||||
* @author apio (cloudapio.eu)
|
||||
* @brief A simple 2D rectangle representation.
|
||||
*
|
||||
* @copyright Copyright (c) 2023, the Luna authors.
|
||||
*
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
#include <ui/Point.h>
|
||||
|
||||
|
@ -1,3 +1,12 @@
|
||||
/**
|
||||
* @file Canvas.cpp
|
||||
* @author apio (cloudapio.eu)
|
||||
* @brief Drawable surfaces.
|
||||
*
|
||||
* @copyright Copyright (c) 2023, the Luna authors.
|
||||
*
|
||||
*/
|
||||
|
||||
#include <ui/Canvas.h>
|
||||
|
||||
namespace ui
|
||||
|
@ -1,3 +1,12 @@
|
||||
/**
|
||||
* @file Font.cpp
|
||||
* @author apio (cloudapio.eu)
|
||||
* @brief PSF font loading and rendering.
|
||||
*
|
||||
* @copyright Copyright (c) 2023, the Luna authors.
|
||||
*
|
||||
*/
|
||||
|
||||
#include <luna/String.h>
|
||||
#include <os/File.h>
|
||||
#include <ui/Font.h>
|
||||
|
@ -1,3 +1,12 @@
|
||||
/**
|
||||
* @file Image.cpp
|
||||
* @author apio (cloudapio.eu)
|
||||
* @brief TGA image loading and rendering.
|
||||
*
|
||||
* @copyright Copyright (c) 2023, the Luna authors.
|
||||
*
|
||||
*/
|
||||
|
||||
#include <os/File.h>
|
||||
#include <ui/Image.h>
|
||||
|
||||
|
@ -1,3 +1,12 @@
|
||||
/**
|
||||
* @file Rect.cpp
|
||||
* @author apio (cloudapio.eu)
|
||||
* @brief A simple 2D rectangle representation.
|
||||
*
|
||||
* @copyright Copyright (c) 2023, the Luna authors.
|
||||
*
|
||||
*/
|
||||
|
||||
#include <ui/Rect.h>
|
||||
|
||||
namespace ui
|
||||
|
Loading…
Reference in New Issue
Block a user