From the data-binding documentation:
https://delight-dev.github.io/Tutorials/DataBinding.html
namespace Delight
{
public partial class Models
{
public static string MyModelValue = "Hello";
}
}
Is it possible to have multiple of these partial classes? We have around 4 UIs, and having all 4 UIs in one single state file gets a little messy. We are thinking of appending HUD_ and INVENTORY_ to each value, but is there a better way? Ideally separate model files or something.
Thanks
From the data-binding documentation:
https://delight-dev.github.io/Tutorials/DataBinding.html
Is it possible to have multiple of these partial classes? We have around 4 UIs, and having all 4 UIs in one single state file gets a little messy. We are thinking of appending
HUD_andINVENTORY_to each value, but is there a better way? Ideally separate model files or something.Thanks