add ckg
plantilla base para movimiento básico
This commit is contained in:
22
Assets/Game Kit Controller/Scripts/Stats System/Istat.cs
Normal file
22
Assets/Game Kit Controller/Scripts/Stats System/Istat.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
public interface Istat
|
||||
{
|
||||
void eventToInitializeStat (float newValue);
|
||||
|
||||
void eventToIncreaseStat (float newValue);
|
||||
|
||||
void eventToUseStat (float newValue);
|
||||
|
||||
void eventToAddAmount (float newValue);
|
||||
|
||||
void eventToInitializeBoolStat (bool newValue);
|
||||
|
||||
void eventToActivateBoolStat (bool newValue);
|
||||
|
||||
void eventToInitializeStatOnComponent ();
|
||||
|
||||
void eventToInitializeBoolStatOnComponent ();
|
||||
}
|
||||
Reference in New Issue
Block a user