14 lines
206 B
C#
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;
|
|
}
|