Improved element documentation

This commit is contained in:
Sasha Koshka
2023-02-09 14:50:24 -05:00
parent c7bebabed5
commit 2cd670f4cd
7 changed files with 34 additions and 1 deletions

7
elements/core/doc.go Normal file
View File

@@ -0,0 +1,7 @@
// Package core provides tools that allow elements to easily fulfill common
// interfaces without having to duplicate a ton of code. Each "core" is a type
// that can be embedded into an element directly, working to fulfill a
// particular interface. Each one comes with a corresponding core control, which
// provides an interface for elements to exert control over the core. They
// should be kept private.
package core