mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-07 22:07:48 +00:00
GEEKING
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
using Microsoft.Ccr.Core;
|
||||
|
||||
namespace Roblox;
|
||||
|
||||
public interface IAsyncDictionary<TKey, TValue>
|
||||
{
|
||||
void Add(TKey key, TValue value, Port<EmptyValue> result);
|
||||
|
||||
void ContainsKey(TKey key, Port<bool> result);
|
||||
|
||||
void Remove(TKey key, Port<bool> result);
|
||||
|
||||
void TryGetValue(TKey key, PortSet<TValue, EmptyValue> result);
|
||||
|
||||
void GetOrCreate(TKey key, Port<TValue> result);
|
||||
}
|
||||
Reference in New Issue
Block a user