This repository has been archived on 2023-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
dungeon-crawler-demo/scripts/Interfaces/IStat.cs
2020-10-26 00:50:16 -04:00

14 lines
206 B
C#

using System;
using Godot;
public delegate void StatUpdatedHandler(int newValue);
interface IStat
{
int value {get;}
int max {get;}
int min {get;}
event StatUpdatedHandler statUpdated;
}