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.

22 lines
376 B

3 years ago
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
3 days ago
namespace ECSTest
3 years ago
{
3 days ago
public class Main : MonoBehaviour
3 years ago
{
3 days ago
// Start is called before the first frame update
void Start()
{
TestEntityDataBlock.Run();
}
3 years ago
3 days ago
// Update is called once per frame
void Update()
{
}
3 years ago
}
}