2025-12-26 14:22:46 +08:00
|
|
|
namespace AlicizaX.UI
|
2025-05-28 19:37:38 +08:00
|
|
|
{
|
2025-12-26 14:22:46 +08:00
|
|
|
public interface IMixedObjectFactory<T> where T : class
|
2025-05-28 19:37:38 +08:00
|
|
|
{
|
|
|
|
|
T Create(string typeName);
|
|
|
|
|
|
|
|
|
|
void Destroy(string typeName, T obj);
|
|
|
|
|
|
|
|
|
|
void Reset(string typeName, T obj);
|
|
|
|
|
|
|
|
|
|
bool Validate(string typeName, T obj);
|
|
|
|
|
}
|
|
|
|
|
}
|