Skip to content

Commit

Permalink
Merge pull request #15 from techno-dwarf-works/feature/refactoring
Browse files Browse the repository at this point in the history
Version 0.0.12
  • Loading branch information
OpOpYaDev committed Jun 26, 2024
1 parent b3adc72 commit 4a3b866
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 1 deletion.
3 changes: 3 additions & 0 deletions Runtime/Interfaces.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions Runtime/Interfaces/ICloneable.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
namespace Better.Commons.Runtime.Interfaces
{
public interface ICloneable<T>
{
public T Clone();
}
}
3 changes: 3 additions & 0 deletions Runtime/Interfaces/ICloneable.cs.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions Runtime/Interfaces/ICopyable.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
namespace Better.Commons.Runtime.Interfaces
{
public interface ICopyable<T>
{
public void Copy(T source);
}

public interface ICopyable : ICopyable<object>
{
}
}
3 changes: 3 additions & 0 deletions Runtime/Interfaces/ICopyable.cs.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "com.tdw.better.commons",
"displayName": "Better Commons",
"version": "0.0.11",
"version": "0.0.12",
"unity": "2021.3",
"description": " ",
"dependencies": {
Expand Down

0 comments on commit 4a3b866

Please sign in to comment.