From 28a7b2ecd90e7e67427682a99b8616e13042b4ab Mon Sep 17 00:00:00 2001 From: 简律纯 Date: Tue, 28 May 2024 00:28:39 +0800 Subject: chore: refresh source tree files --- hydro_roll_core/__init__.py | 3 +-- hydro_roll_core/core.py | 1 + hydro_roll_core/development/__init__.py | 3 +++ hydro_roll_core/development/character.py | 3 +++ hydro_roll_core/libcore.pyi | 6 ++++++ 5 files changed, 14 insertions(+), 2 deletions(-) create mode 100644 hydro_roll_core/core.py create mode 100644 hydro_roll_core/development/character.py create mode 100644 hydro_roll_core/libcore.pyi (limited to 'hydro_roll_core') diff --git a/hydro_roll_core/__init__.py b/hydro_roll_core/__init__.py index 12508e3..733271d 100644 --- a/hydro_roll_core/__init__.py +++ b/hydro_roll_core/__init__.py @@ -1,2 +1 @@ -from . import corelib - +from .libcore import * \ No newline at end of file diff --git a/hydro_roll_core/core.py b/hydro_roll_core/core.py new file mode 100644 index 0000000..020ccb9 --- /dev/null +++ b/hydro_roll_core/core.py @@ -0,0 +1 @@ +class Core: ... diff --git a/hydro_roll_core/development/__init__.py b/hydro_roll_core/development/__init__.py index e69de29..b3e76b3 100644 --- a/hydro_roll_core/development/__init__.py +++ b/hydro_roll_core/development/__init__.py @@ -0,0 +1,3 @@ +from .character import Character + +__all__ = ["Character"] diff --git a/hydro_roll_core/development/character.py b/hydro_roll_core/development/character.py new file mode 100644 index 0000000..63ed7dc --- /dev/null +++ b/hydro_roll_core/development/character.py @@ -0,0 +1,3 @@ +class Character: + class Attribute: + ... diff --git a/hydro_roll_core/libcore.pyi b/hydro_roll_core/libcore.pyi new file mode 100644 index 0000000..937bef3 --- /dev/null +++ b/hydro_roll_core/libcore.pyi @@ -0,0 +1,6 @@ +class libcore: + """Core library for hydro roll""" + def __init__(self): ... + def sum_as_string(self, a: int, b: int) -> str: + """sum two numbers and return the result as a string""" + ... -- cgit v1.2.3-70-g09d2