add areaname

This commit is contained in:
Vova
2023-12-06 14:55:20 +02:00
parent 87595daf67
commit 487c0fabae
16 changed files with 408 additions and 60 deletions
+31
View File
@@ -0,0 +1,31 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Assets.Scripts.Interfaces
{
public interface IStat
{
string Name { get; }
}
public interface IStringStat
{
string Value { get; }
void SetValue(string value);
}
public interface INumericStat
{
float MaxValue { get; }
float Price { get; }
float Quantity { get; }
float Value { get; }
bool deduct(float amount);
void forceDeduct(float amount);
void increase(float byAmount);
}
}