9 lines
109 B
C#
9 lines
109 B
C#
using System;
|
|
|
|
public class Egg : BasePart
|
|
{
|
|
public override bool CanBeEnclosed()
|
|
{
|
|
return true;
|
|
}
|
|
}
|