Magically import images and more into Gamecraft as blocks
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

9 lines
182B

  1. namespace Pixi.Common
  2. {
  3. public interface BlueprintProvider
  4. {
  5. string Name { get; }
  6. BlockJsonInfo[] Blueprint(string name, BlockJsonInfo root);
  7. }
  8. }