Skip to content

Instantly share code, notes, and snippets.

@gmYusuf
Created January 28, 2022 06:40
Show Gist options
  • Save gmYusuf/d72e7a28589928dc129ffed22c5e75b7 to your computer and use it in GitHub Desktop.
Save gmYusuf/d72e7a28589928dc129ffed22c5e75b7 to your computer and use it in GitHub Desktop.
using UnityEngine;
using System.Collections;
using AndroidUtils;
namespace FirebaseUnityWrapper.Database.Event
{
public interface IValueEventListener
{
void onCancelled(DatabaseError error);
void onDataChange(DataSnapshot snapshot);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment