mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-07 13:05:41 +00:00
12 lines
161 B
C#
12 lines
161 B
C#
namespace QSB.WorldSync
|
|
{
|
|
public interface IWorldObject
|
|
{
|
|
int ObjectId { get; }
|
|
string Name { get; }
|
|
|
|
void OnRemoval();
|
|
object ReturnObject();
|
|
}
|
|
}
|