mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-05 05:07:48 +00:00
7 lines
74 B
C#
7 lines
74 B
C#
namespace Roblox.Common;
|
|
|
|
public interface IResult<T>
|
|
{
|
|
T GetResult();
|
|
}
|