doc: ドキュメントを追加

This commit is contained in:
2024-04-22 12:28:37 +09:00
parent 5349b1a060
commit 4e7600d3bf
5 changed files with 57 additions and 7 deletions
@@ -16,6 +16,11 @@
package dev.usbharu.owl.common.property
/**
* プロパティで使用される値
*
* @param T プロパティの型
*/
sealed class PropertyValue<T> {
abstract val value: T
abstract val type: PropertyType