You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
407 B

using System;
using GameCore.TinyECS;
namespace ECSTest.Server
{
public struct World : IDisposable
{
public EntityDatabase<EntityType, EntityDataBlockChain> cannonDatabase;
public EntityDatabase<EntityType, EntityDataBlockChain> bulletDatabase;
public void Dispose()
{
cannonDatabase.Dispose();
bulletDatabase.Dispose();
}
}
}